Cargo.toml 633 B

12345678910111213141516171819202122
  1. [package]
  2. name = "verifier"
  3. version = "0.1.0"
  4. description = "CLI-utility to verify zk proofs for analysis"
  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. darkfi-serial = {path = "../../../../src/serial"}
  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. [profile.release]
  18. debug = true