-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
87 lines (84 loc) · 2.3 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
[workspace]
resolver = "2"
members = [
"snarkd_cli",
"snarkd_client",
"snarkd_common",
"snarkd_crypto",
"snarkd_errors",
"snarkd_ir",
"snarkd_network",
"snarkd_node",
"snarkd_peer",
"snarkd_rpc",
"snarkd_storage",
"tools/coverage",
"tools/test-runner",
"tools/test-generator",
]
[workspace.dependencies]
always_cell = "0.1"
anyhow = "1.0.66"
arc-swap = "1.0"
arbitrary = { version = "1", features = ["derive"] }
async-trait = "0.1"
bech32 = "0.9.1"
blake2 = "0.10"
bitvec = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.0", features = ["derive"] }
colored = "2.0"
dashmap = "5.4"
env_logger = "0.9"
error-stack = "0.2"
fxhash = "0.2.1"
hashbrown = "0.13.1"
hex = "0.4"
indexmap = { version = "1.9.1", features = ["serde"] }
itertools = "0.10"
lazy_static = "1.4"
log = "0.4"
num-bigint = "0.4"
num_cpus = "1.0"
num_enum = "0.5.7"
once_cell = "1.16"
open = "3.2"
parking_lot = "0.12"
prost = "0.11.0"
prost-build = "0.11.1"
rand = "0.8"
rand_core = { version = "0.6", default-features = false }
rand_xorshift = "0.3"
rayon = "1.5"
ruint = { version = "1.7", features = ["rand"] }
refinery = { version = "0.8.6", features = [
"rusqlite-bundled",
], git = "https://github.com/rust-db/refinery.git" }
rusqlite = { version = "0.28", features = ["bundled"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_yaml = "0.9.14"
serde_json = "1.0"
sha2 = { version = "0.10", default-features = false }
smallvec = "1.10"
strum = { version = "0.24", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.0", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
# we need a new release for rusqlite 0.28 support
tokio-rusqlite = "0.3.0"
uuid = { version = "1.2", features = ["serde", "v4"] }
url = { version = "2.3.1", features = ["serde"] }
walkdir = "2.3"
snarkd_crypto = { path = "./snarkd_crypto" }
snarkd_network = { path = "./snarkd_network" }
snarkd_client = { path = "./snarkd_client" }
snarkd_common = { path = "./snarkd_common" }
snarkd_errors = { path = "./snarkd_errors" }
snarkd_peer = { path = "./snarkd_peer" }
snarkd_rpc = { path = "./snarkd_rpc" }
snarkd_storage = { path = "./snarkd_storage" }
test-runner = { path = "./tools/test-runner" }
[profile.test]
opt-level = 3
lto = true
debug-assertions = true