Cargo.toml 523 B

123456789101112131415161718192021222324
  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. async-channel = "2.5.0"
  10. async-trait = "0.1.89"
  11. easy-parallel = "3.3.1"
  12. smol = "2.0.2"
  13. tracing = "0.1.44"
  14. url = "2.5.7"
  15. tinyjson = "2.5.1"
  16. hex = "0.4.3"
  17. sled = "0.34.7"
  18. tapes = {git = "https://github.com/Cuprate/Tapes"}
  19. bytemuck = {version = "1.24.0", features = ["derive"]}