Cargo.toml 672 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "explorer"
  3. version = "0.5.0"
  4. edition = "2021"
  5. [dependencies]
  6. darkfi = {path = "../../", features = ["blockchain", "rpc"]}
  7. darkfi-serial = {path = "../../src/serial", features = ["derive"]}
  8. darkfi-sdk = {path = "../../src/sdk"}
  9. darkfi_money_contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  10. async-channel = "2.5.0"
  11. async-trait = "0.1.89"
  12. easy-parallel = "3.3.1"
  13. smol = "2.0.2"
  14. tracing = "0.1.44"
  15. url = "2.5.7"
  16. tinyjson = "2.5.1"
  17. hex = "0.4.3"
  18. sled = "0.34.7"
  19. tapes = {git = "https://github.com/Cuprate/Tapes"}
  20. bytemuck = {version = "1.24.0", features = ["derive"]}
  21. arg = {git = "https://github.com/parazyd/arg"}