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.

40 lines
1.5 KiB

  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-poly-commit = "^0.4.0"
  16. ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = [
  17. "r1cs",
  18. "sponge",
  19. "crh",
  20. ] }
  21. ark-std = "0.4.0"
  22. color-eyre = "0.6.2"
  23. num-bigint = "0.4.3"
  24. folding-schemes = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "folding-schemes", branch="fix/circom-frontend", features=["light-test"]}
  25. solidity-verifiers = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "solidity-verifiers"}
  26. serde = "1.0.198"
  27. serde_json = "1.0.116"
  28. tiny-keccak = { version = "2.0", features = ["keccak"] }
  29. rand = "0.8.5"
  30. [patch.crates-io]
  31. # patch ark_curves to use a cherry-picked version which contains
  32. # bn254::constraints & grumpkin for v0.4.0 (once arkworks v0.5.0 is released
  33. # this will no longer be needed)
  34. ark-bn254 = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"}
  35. ark-grumpkin = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"}