|
|
@ -6,23 +6,23 @@ edition = "2021" |
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|
|
|
|
|
|
|
[dependencies] |
|
|
|
ark-groth16 = { version = "^0.4.0" } |
|
|
|
ark-pallas = {version="0.4.0", features=["r1cs"]} |
|
|
|
ark-vesta = {version="0.4.0", features=["r1cs"]} |
|
|
|
ark-bn254 = { version = "0.4.0", features = ["r1cs"] } |
|
|
|
ark-grumpkin = {version="0.4.0", features=["r1cs"]} |
|
|
|
ark-ec = "0.4.1" |
|
|
|
ark-ff = "0.4.1" |
|
|
|
ark-r1cs-std = { version = "0.4.0", default-features = false } |
|
|
|
ark-relations = { version = "0.4.0", default-features = false } |
|
|
|
ark-snark = { version = "^0.4.0", default-features = false } |
|
|
|
ark-poly-commit = "^0.4.0" |
|
|
|
ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = [ |
|
|
|
ark-groth16 = { version = "^0.5.0" } |
|
|
|
ark-pallas = {version="0.5.0", features=["r1cs"]} |
|
|
|
ark-vesta = {version="0.5.0", features=["r1cs"]} |
|
|
|
ark-bn254 = { version = "0.5.0", features = ["r1cs"] } |
|
|
|
ark-grumpkin = {version="0.5.0", features=["r1cs"]} |
|
|
|
ark-ec = "0.5.0" |
|
|
|
ark-ff = "0.5.0" |
|
|
|
ark-r1cs-std = { version = "0.5.0", default-features = false } |
|
|
|
ark-relations = { version = "0.5.0", default-features = false } |
|
|
|
ark-snark = { version = "^0.5.0", default-features = false } |
|
|
|
ark-poly-commit = "^0.5.0" |
|
|
|
ark-crypto-primitives = { version = "^0.5.0", default-features = false, features = [ |
|
|
|
"r1cs", |
|
|
|
"sponge", |
|
|
|
"crh", |
|
|
|
] } |
|
|
|
ark-std = "0.4.0" |
|
|
|
ark-std = "0.5.0" |
|
|
|
color-eyre = "0.6.2" |
|
|
|
num-bigint = "0.4.3" |
|
|
|
# Note: for testing purposes we use the 'light-test' feature when importing |
|
|
@ -30,7 +30,7 @@ num-bigint = "0.4.3" |
|
|
|
# this feature (but then the DeciderETH circuit is bigger and takes more time |
|
|
|
# to compute). |
|
|
|
folding-schemes = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "folding-schemes", features=["light-test"]} |
|
|
|
folding-schemes-circom = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "frontends", optional=true} |
|
|
|
folding-schemes-circom = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "experimental-frontends", optional=true} |
|
|
|
solidity-verifiers = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "solidity-verifiers"} |
|
|
|
serde = "1.0.198" |
|
|
|
serde_json = "1.0.116" |
|
|
@ -45,13 +45,3 @@ rand = "0.8.5" |
|
|
|
[features] |
|
|
|
default = [] |
|
|
|
experimental-frontends = ["dep:folding-schemes-circom"] |
|
|
|
|
|
|
|
|
|
|
|
[patch.crates-io] |
|
|
|
# patch ark_curves to use a cherry-picked version which contains |
|
|
|
# bn254::constraints & grumpkin for v0.4.0 (once arkworks v0.5.0 is released |
|
|
|
# this will no longer be needed) |
|
|
|
ark-bn254 = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"} |
|
|
|
ark-grumpkin = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"} |
|
|
|
ark-circom = { git = "https://github.com/arnaucube/circom-compat" } |
|
|
|
ark-r1cs-std = { git = "https://github.com/winderica/r1cs-std", branch="cherry-pick" } |