-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (40 loc) · 1.83 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 = "R1CS"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-serialize = { version = "^0.4.0", features = [ "derive" ] }
ark-ff = { version = "^0.4.0"}
ark-poly = {version = "^0.4.0"}
ark-crypto-primitives = {version = "0.4.0", features = ["sponge", "r1cs"] }
ark-std = { version = "^0.4.0", default-features = false }
ark-groth16 = { version = "0.4.0", features = ["r1cs" ] }
ark-test-curves = { wversion = "^0.4.0", features = ["bls12_381_curve"] }
ark-relations = { version = "^0.4.0"}
ark-r1cs-std = { version = "^0.4.0"}
ark-bls12-377 = { version = "^0.4.0", features = [ "curve" , "r1cs" ] }
num-bigint = { version = "0.4", default-features = false }
rand_core = { version = "0.6", features = ["getrandom"] }
ark-bls12-381 = { version = "^0.4.0", features = ["curve"] }
derivative = { version = "2", features = [ "use_core" ] }
rayon = { version = "1"}
ark-ec = "0.4.2"
json = "0.12.4"
ark-sponge = { version = "^0.3.0" , features = ["r1cs"] }
ark-bw6-761 = { version = "^0.4.0" }
[dev-dependencies]
ark-bls12-381 = { version = "^0.4.0", features = [ "curve"] }
ark-bls12-377 = { version = "^0.4.0", features = [ "curve", "r1cs"] }
ark-mnt4-298 = { version = "0.4.0", default-features = false, features = ["r1cs", "curve"] }
rand_chacha = "0.3.1"
poseidon-paramgen = { git = "https://github.com/nikkolasg/poseidon377", branch = "feat/v0.4" }
poseidon-parameters = { git = "https://github.com/nikkolasg/poseidon377", branch = "feat/v0.4" }
# Needed for ark-blst
blstrs = { version = "^0.6.1", features = ["__private_bench"] }
lazy_static = "1.4.0"
[features]
default = ["std"]
std = ["ark-ff/std", "ark-relations/std", "ark-std/std", "num-bigint/std"]
[patch.crates-io]
blstrs = { git = "https://github.com/nikkolasg/blstrs", branch = "feat/arkwork" }