Cargo.toml 752 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "tx-replayer"
  3. version = "0.1.0"
  4. description = "CLI-utility to replay transactions 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 = {path = "../../../", features = ["validator"]}
  12. darkfi-sdk = {path = "../../../src/sdk"}
  13. darkfi-serial = {path = "../../../src/serial"}
  14. sled-overlay = {version = "0.1.10"}
  15. smol = {version = "2.0.2"}
  16. clap = {version = "4.4.11", features = ["derive"]}
  17. [patch.crates-io]
  18. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v032"}
  19. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v032"}
  20. [profile.release]
  21. debug = true