Cargo.toml 520 B

1234567891011121314151617
  1. [package]
  2. name = "blockchain-explorer"
  3. version = "0.4.0"
  4. description = "Command-line client to 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.3.3"
  12. clap = {version = "4.1.4", features = ["derive"]}
  13. darkfi = {path = "../../../", features = ["blockchain", "wallet", "rpc"]}
  14. darkfi-sdk = {path = "../../../src/sdk"}
  15. sled = "0.34.7"