Cargo.toml 631 B

1234567891011121314151617181920
  1. [package]
  2. name = "blockchain-explorer"
  3. version = "0.4.1"
  4. description = "Command-line client to display statistics or export blockchain sled database contents"
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://github.com/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [workspace]
  10. [dependencies]
  11. blake3 = "1.4.1"
  12. clap = {version = "4.3.24", features = ["derive"]}
  13. darkfi = {path = "../../../", features = ["blockchain", "wallet", "rpc"]}
  14. darkfi-sdk = {path = "../../../src/sdk"}
  15. sled = "0.34.7"
  16. [patch.crates-io]
  17. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v3"}