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.

32 lines
953 B

  1. [package]
  2. name = "grapevine_sonobe"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. crate-type = ["cdylib", "rlib"]
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. ark-pallas = { version = "0.4.0", features = ["r1cs"] }
  10. ark-vesta = {version="0.4.0", features=["r1cs"]}
  11. ark-circom = { git = "https://github.com/arnaucube/circom-compat.git" }
  12. ark-ec = "0.4.1"
  13. ark-ff = "0.4.1"
  14. ark-r1cs-std = { version = "0.4.0", default-features = false }
  15. ark-relations = { version = "0.4.0", default-features = false }
  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. sonobe = { git = "https://github.com/privacy-scaling-explorations/sonobe", package = "folding-schemes", branch = "main" }
  25. serde = "1.0.198"
  26. serde_json = "1.0.116"
  27. [dev-dependencies]
  28. lazy_static = "1.4.0"