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.

36 lines
1.2 KiB

  1. [package]
  2. name = "grapevine_sonobe"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. crate-type = ["cdylib", "rlib"]
  7. [dependencies]
  8. ark-bn254 = { version = "0.4.0", features = ["r1cs"] }
  9. ark-grumpkin = {version="0.4.0", features=["r1cs"]}
  10. ark-ec = "0.4.1"
  11. ark-ff = "0.4.1"
  12. ark-r1cs-std = { version = "0.4.0", default-features = false }
  13. ark-relations = { version = "0.4.0", default-features = false }
  14. ark-crypto-primitives = { version = "^0.4.0", default-features = false, features = [
  15. "r1cs",
  16. "sponge",
  17. "crh",
  18. ] }
  19. ark-std = "0.4.0"
  20. color-eyre = "0.6.2"
  21. num-bigint = "0.4.3"
  22. sonobe = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "folding-schemes", branch = "circom-external-inputs" }
  23. serde = "1.0.198"
  24. serde_json = "1.0.116"
  25. [dev-dependencies]
  26. lazy_static = "1.4.0"
  27. [patch.crates-io]
  28. # patch ark_curves to use a cherry-picked version which contains
  29. # bn254::constraints & grumpkin for v0.4.0 (once arkworks v0.5.0 is released
  30. # this will no longer be needed)
  31. ark-bn254 = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"}
  32. ark-grumpkin = { git = "https://github.com/arnaucube/ark-curves-cherry-picked", branch="cherry-pick"}