Cargo.toml 843 B

1234567891011121314151617181920212223242526
  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://git.dark.fi/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. kvdb-overlay = {git = "https://git.dark.fi/darkrenaissance/kvdb-overlay", version = "0.1.0"}
  15. parking_lot = {version = "0.12.5"}
  16. smol = {version = "2.0.2"}
  17. clap = {version = "4.4.11", features = ["derive"]}
  18. [patch.crates-io]
  19. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v050"}
  20. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v050"}
  21. [profile.release]
  22. debug = true