forked from AleoNet/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
122 lines (98 loc) · 2.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[package]
name = "snarkos"
version = "2.0.2"
authors = [ "The Aleo Team <[email protected]>" ]
description = "A decentralized operating system"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/snarkOS"
keywords = [
"aleo",
"cryptography",
"blockchain",
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography", "operating-systems" ]
license = "GPL-3.0"
edition = "2021"
[workspace]
members = [
"account",
"cli",
"display",
"node",
"node/cdn",
"node/consensus",
"node/ledger",
"node/messages",
"node/metrics",
"node/rest",
"node/router",
"node/store",
"node/tcp",
".integration",
]
[[bin]]
name = "snarkos"
path = "snarkos/main.rs"
[workspace.dependencies.snarkvm]
#path = "../snarkVM"
#git = "https://github.com/AleoHQ/snarkVM.git"
version = "=0.10.2"
features = ["circuit", "console"]
[dependencies.anyhow]
version = "1.0.70"
[dependencies.clap]
version = "3.2"
features = ["derive"]
[dependencies.snarkos-account]
path = "./account"
[dependencies.snarkos-cli]
path = "./cli"
[dependencies.snarkos-display]
path = "./display"
[dependencies.snarkos-node]
path = "./node"
[dependencies.snarkos-node-cdn]
path = "./node/cdn"
[dependencies.snarkos-node-consensus]
path = "./node/consensus"
[dependencies.snarkos-node-ledger]
path = "./node/ledger"
[dependencies.snarkos-node-messages]
path = "./node/messages"
[dependencies.snarkos-node-rest]
path = "./node/rest"
[dependencies.snarkos-node-router]
path = "./node/router"
[dependencies.snarkos-node-store]
path = "./node/store"
[dependencies.snarkos-node-tcp]
path = "./node/tcp"
[dependencies.tikv-jemallocator]
version = "0.5"
[dev-dependencies.rusty-hook]
version = "0.11.2"
[build-dependencies.walkdir]
version = "2"
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[profile.dev]
opt-level = 2
lto = "thin"
incremental = true
[profile.test]
opt-level = 2
lto = "thin"
incremental = true
debug = true
debug-assertions = true