-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathCargo.toml
64 lines (58 loc) · 2.38 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
[workspace]
members = [
"folding-schemes",
"solidity-verifiers",
"cli",
"experimental-frontends"
]
resolver = "2"
[patch.crates-io]
ark-r1cs-std = { git = "https://github.com/yelhousni/r1cs-std", rev = "440ca3" } # "perf/sw" branch
[workspace.package]
edition = "2021"
license = "MIT"
repository = "https://github.com/privacy-scaling-explorations/sonobe/"
[workspace.dependencies]
acvm = { git = "https://github.com/winderica/noir", rev = "fc9e99", default-features = false } # "arkworks-next" branch
askama = { version = "0.12.0", default-features = false }
clap = { version = "4.4" }
clap-verbosity-flag = { version = "2.1" }
criterion = { version = "0.5" }
env_logger = { version = "0.10" }
getrandom = { version = "0.2" }
log = { version = "0.4" }
noname = { git = "https://github.com/dmpierre/noname", rev = "c34f17" }
num-bigint = { version = "0.4.3" }
num-integer = { version = "0.1" }
pprof = { version = "0.13" }
serde = { version = "^1.0.0" }
serde_json = { version = "^1.0.0" }
sha3 = { version = "0.10" }
rand = { version = "0.8.5" }
rayon = { version = "1" }
revm = { version = "19.5.0", default-features = false }
rust-crypto = { version = "0.2" }
thiserror = { version = "1.0" }
# Arkworks family
ark-bn254 = { version = "^0.5.0", default-features = false }
ark-circom = { git = "https://github.com/winderica/circom-compat", rev = "9f8d7c", default-features = false } # "arkworks-next" branch
ark-crypto-primitives = { version = "^0.5.0", default-features = false }
ark-ec = { version = "^0.5.0", default-features = false }
ark-ff = { version = "^0.5.0", default-features = false }
ark-groth16 = { version = "^0.5.0" }
ark-grumpkin = { version = "^0.5.0", default-features = false }
ark-mnt4-298 = { version = "^0.5.0" }
ark-mnt6-298 = { version = "^0.5.0" }
ark-pallas = { version = "^0.5.0" }
ark-poly = { version = "^0.5.0", default-features = false }
ark-poly-commit = { version = "^0.5.0" }
ark-r1cs-std = { version = "^0.5.0", default-features = false }
ark-relations = { version = "^0.5.0", default-features = false }
ark-serialize = { version = "^0.5.0" }
ark-snark = { version = "^0.5.0", default-features = false }
ark-std = { version = "^0.5.0", default-features = false }
ark-vesta = { version = "^0.5.0" }
# Local crates
experimental-frontends = { path = "experimental-frontends" }
folding-schemes = { path = "folding-schemes" }
solidity-verifiers = { path = "solidity-verifiers" }