Cargo.toml 782 B

1234567891011121314151617181920212223242526272829
  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. darkfi_deployooor_contract = {path = "../../src/contract/deployooor", features = ["no-entrypoint", "client"]}
  11. async-channel = "2.5.0"
  12. async-trait = "0.1.89"
  13. easy-parallel = "3.3.1"
  14. smol = "2.0.2"
  15. tracing = "0.1.44"
  16. url = "2.5.7"
  17. tinyjson = "2.5.1"
  18. hex = "0.4.3"
  19. sled = "0.34.7"
  20. tapes = {git = "https://github.com/Cuprate/Tapes"}
  21. bytemuck = {version = "1.24.0", features = ["derive"]}
  22. arg = {git = "https://github.com/parazyd/arg"}