Cargo.toml 903 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "generator"
  3. version = "0.1.0"
  4. description = "CLI-utility to generate zk proofs for analyzing zkvm opcodes resource usage"
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://codeberg.org/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2024"
  9. [workspace]
  10. [dependencies]
  11. darkfi-sdk = {path = "../../../../src/sdk"}
  12. darkfi = {path = "../../../../", features = ["zk"]}
  13. halo2_proofs = {version = "0.3.2", features = ["circuit-params"]}
  14. halo2_gadgets = {version = "0.5.0", features = ["circuit-params"]}
  15. rand = "0.8.6"
  16. darkfi-serial = {path = "../../../../src/serial"}
  17. [dev-dependencies]
  18. halo2_proofs = {version = "0.3.2", features = ["dev-graph", "sanity-checks"]}
  19. halo2_gadgets = "0.5.0"
  20. [patch.crates-io]
  21. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v050"}
  22. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v050"}