You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.9 KiB

4 months ago
  1. [package]
  2. name = "keccak-chain-sonobe"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. [dev-dependencies]
  8. ark-groth16 = { version = "^0.4.0" }
  9. ark-bn254 = { version = "0.4.0", features = ["r1cs"] }
  10. ark-grumpkin = {version="0.4.0", features=["r1cs"]}
  11. ark-ec = "0.4.1"
  12. ark-ff = "0.4.1"
  13. ark-r1cs-std = { version = "0.4.0", default-features = false }
  14. ark-relations = { version = "0.4.0", default-features = false }
  15. ark-snark = { version = "^0.4.0", default-features = false }
  16. ark-poly-commit = "^0.4.0"
  17. ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = [
  18. "r1cs",
  19. "sponge",
  20. "crh",
  21. ] }
  22. ark-std = "0.4.0"
  23. color-eyre = "0.6.2"
  24. num-bigint = "0.4.3"
  25. # Note: for testing purposes we use the 'light-test' feature when importing
  26. # Sonobe's folding-schemes, but for a real-world usage it must be used without
  27. # this feature (but then the DeciderETH circuit is bigger and takes more time
  28. # to compute).
  29. folding-schemes = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "folding-schemes", features=["light-test"]}
  30. solidity-verifiers = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "solidity-verifiers"}
  31. serde = "1.0.198"
  32. serde_json = "1.0.116"
  33. tiny-keccak = { version = "2.0", features = ["keccak"] }
  34. rand = "0.8.5"
  35. [patch.crates-io]
  36. # patch ark_curves to use a cherry-picked version which contains
  37. # bn254::constraints & grumpkin for v0.4.0 (once arkworks v0.5.0 is released
  38. # this will no longer be needed)
  39. ark-bn254 = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"}
  40. ark-grumpkin = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"}
  41. ark-circom = { git = "https://github.com/arnaucube/circom-compat" }
  42. ark-r1cs-std = { git = "https://github.com/winderica/r1cs-std", branch="cherry-pick" }