forked from AleoNet/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
105 lines (89 loc) · 2.14 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
[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"
[[bin]]
name = "main"
path = "src/main.rs"
[dependencies]
aleo-std = { version = "0.1.14", default-features = false }
anyhow = { version = "1.0" }
backoff = { version = "0.4", features = ["tokio"] }
bytes = { version = "1" }
colored = { version = "2.0" }
dotenv = { version = "0.15" }
futures = { version = "0.3" }
hyper = { version = "0.14" }
hyper-tls = { version = "0.5" }
indexmap = { version = "1.9", features = ["rayon"] }
once_cell = { version = "1.13.0" }
parking_lot = { version = "0.12" }
rand = { version = "0.8" }
rayon = { version = "1.5" }
rusoto_core = { version = "0.48" }
rusoto_s3 = { version = "0.48" }
serde_json = { version = "1.0" }
tokio = { version = "1.5.0", features = ["full"] }
tokio-util = { version = "0.7.3" }
tracing = { version = "0.1" }
warp = { version = "0.3" }
[dependencies.clap]
version = "3.1"
features = [ "derive" ]
[dependencies.tracing-subscriber]
version = "0.3"
features = [ "env-filter", "parking_lot" ]
[dependencies.snarkvm]
git = "https://github.com/AleoHQ/snarkVM.git"
rev = "7555dc0"
features = ["circuit", "console", "parallel", "utilities"]
[dependencies.bincode]
version = "1.0"
[dependencies.reqwest]
version = "0.11.11"
[dependencies.rocksdb]
version = "0.19"
default-features = false
features = [ "lz4" ]
[dependencies.serde]
version = "1"
[dev-dependencies.rusty-hook]
version = "0.11.2"
[dev-dependencies.tempfile]
version = "3.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 = 3
lto = "thin"
incremental = true
[profile.test]
opt-level = 3
lto = "thin"
incremental = true
debug = true
debug-assertions = true