forked from anoma/namada-trusted-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (40 loc) · 1.46 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
[package]
name = "setup-utils"
version = "1.0.0-beta.11"
authors = ["Georgios Konstantopoulos <[email protected]>", "The Aleo Team <[email protected]>"]
edition = "2018"
[[bench]]
name = "io"
harness = false
required-features = ["phase2"]
[[bench]]
name = "math"
harness = false
[dependencies]
snarkvm-algorithms = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c", default-features = false, features = ["fft", "hash_to_curve", "crypto_hash", "blake2"] }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-fields = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-r1cs = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-utilities = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c", default-features = false }
blake2 = "0.9"
blake2s_simd = { version = "0.5.11" }
cfg-if = "1.0"
crossbeam = { version = "0.8.0" }
num_cpus = { version = "1.12.0" }
rand = { version = "0.8" }
rand_chacha = { version = "0.3" }
rayon = { version = "1.4.1", optional = true }
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.9.8"
thiserror = { version = "1.0.22" }
tracing = { version = "0.1.21" }
typenum = { version = "1.11.2" }
[dev-dependencies]
phase2 = { path = "../phase2", features = ["testing"] }
criterion = { version = "0.3.1" }
[features]
default = []
cli = ["parallel"]
wasm = ["snarkvm-algorithms/wasm"]
parallel = ["rayon", "snarkvm-algorithms/parallel"]
phase2 = []