Cargo.toml 823 B

1234567891011121314151617181920212223242526272829303132
  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. monero = "0.21.0"
  12. tiny-keccak = "2.0.2"
  13. async-channel = "2.5.0"
  14. async-trait = "0.1.89"
  15. easy-parallel = "3.3.1"
  16. smol = "2.0.2"
  17. tracing = "0.1.44"
  18. url = "2.5.7"
  19. tinyjson = "2.5.1"
  20. hex = "0.4.3"
  21. sled = "0.34.7"
  22. tapes = {git = "https://github.com/Cuprate/Tapes"}
  23. bytemuck = {version = "1.24.0", features = ["derive"]}
  24. arg = {git = "https://github.com/parazyd/arg"}