Files
plasma-fold/Cargo.toml
2025-08-27 15:02:00 +02:00

32 lines
1.4 KiB
TOML

[workspace]
resolver = "2"
members = [ "aggregator","plasma-fold", "client", "mock-contract" ]
[workspace.dependencies]
folding-schemes = { git = "https://github.com/privacy-scaling-explorations/sonobe", rev = "9b7dd34" }
ark-ff = { version = "^0.5.0"}
ark-bn254 = { version = "^0.5.0"}
ark-grumpkin = { version = "^0.5.0"}
ark-r1cs-std = { version = "^0.5.0" }
ark-relations = { version = "^0.5.0"}
ark-crypto-primitives = { version = "^0.5.0" }
ark-std = { version = "^0.5.0"}
ark-serialize = { version = "^0.5.0"}
ark-ec = { version = "^0.5.0" }
num = "0.4.0"
thiserror = "2.0.12"
[patch.crates-io]
ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
ark-bn254 = { git = "https://github.com/arkworks-rs/algebra" }
ark-grumpkin = { git = "https://github.com/arkworks-rs/algebra" }
ark-r1cs-std = { git = "https://github.com/flyingnobita/r1cs-std_yelhousni", rev = "b4bab0c" } # "perf/sw-updated" branch
ark-relations = { git = "https://github.com/arkworks-rs/snark" }
ark-crypto-primitives = { git = "https://github.com/flyingnobita/crypto-primitives", rev = "f559264" }
ark-std = { git = "https://github.com/arkworks-rs/std" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
ark-ec = { git = "https://github.com/arkworks-rs/algebra" }
ark-snark = { git = "https://github.com/arkworks-rs/snark" }
ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "b3b4a15" }