Cargo.toml 478 B

12345678910111213141516171819202122
  1. [package]
  2. name = "ecip-bench"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [workspace]
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. darkfi = {path = "../../../../", features = ["zk"]}
  9. darkfi-sdk = {path = "../../../../src/sdk"}
  10. halo2_proofs = "0.3.2"
  11. halo2_gadgets = "0.4.0"
  12. rand = "0.8.5"
  13. hex = "0.4.3"
  14. [patch.crates-io]
  15. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v3"}
  16. [lints]
  17. workspace = true