Cargo.toml 552 B

1234567891011121314151617181920212223
  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.5.0"
  12. rand = "0.8.6"
  13. hex = "0.4.3"
  14. [patch.crates-io]
  15. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v050"}
  16. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v050"}
  17. [lints]
  18. workspace = true