-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (38 loc) · 1.1 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
[workspace]
members = [ "client", "node", "util" ]
resolver = "2"
[workspace.dependencies]
rand = "0.8.5"
bytes = "1.6.0"
tower = "0.4.13"
tokio = "1.37.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
cometbft = "=0.1.0-alpha.2"
cometbft-proto = "0.1.0-alpha.2"
tower-abci = { git = "https://github.com/llGaetanll/tower-abci", branch = "main" }
ark-ff = "0.4.0"
ark-std = "0.4.0"
ark-snark = "0.4.0"
ark-groth16 = "0.4.0"
ark-bls12-381 = "0.4.0"
ark-ec = { version = "0.4.0", default-features = false }
ark-ed-on-bls12-381 = { version = "0.4.0", features = ["r1cs"] }
ark-crypto-primitives = { version = "0.4.0", features = ["r1cs", "commitment", "signature", "crh", "prf", "merkle_tree"] }
ark-relations = { version = "0.4.0", features = ["tracing-subscriber"] }
ark-r1cs-std = { version = "0.4.0", default-features = false }
ark-serialize = { version = "0.4.0", default-features = false }
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
panic = 'abort'
[profile.dev]
opt-level = 0
panic = 'abort'
[profile.test]
opt-level = 3
lto = "thin"
incremental = true
debug-assertions = true
debug = true