|
[package]
|
|
name = "keccak-chain-sonobe"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
ark-groth16 = { version = "^0.4.0" }
|
|
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 = [
|
|
"r1cs",
|
|
"sponge",
|
|
"crh",
|
|
] }
|
|
ark-std = "0.4.0"
|
|
color-eyre = "0.6.2"
|
|
num-bigint = "0.4.3"
|
|
# Note: for testing purposes we use the 'light-test' feature when importing
|
|
# Sonobe's folding-schemes, but for a real-world usage it must be used without
|
|
# 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"]}
|
|
|
|
# note: this branch uses the 'reduce-memory-usage' branch from sonobe:
|
|
folding-schemes = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "folding-schemes", features=["light-test"], branch="reduce-memory-usage" }
|
|
solidity-verifiers = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "solidity-verifiers"}
|
|
serde = "1.0.198"
|
|
serde_json = "1.0.116"
|
|
tiny-keccak = { version = "2.0", features = ["keccak"] }
|
|
|
|
rand = "0.8.5"
|
|
|
|
[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" }
|