Cargo.toml 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "explorerd"
  3. version = "0.4.1"
  4. description = "Daemon to listen for new blocks from darkfid and store them in an easily accessible format for further usage."
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://codeberg.org/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [dependencies]
  10. # Darkfi
  11. darkfi = {path = "../../../", features = ["async-daemonize", "validator"]}
  12. darkfi-sdk = {path = "../../../src/sdk"}
  13. darkfi-serial = "0.4.2"
  14. drk = {path = "../../../bin/drk"}
  15. # JSON-RPC
  16. async-trait = "0.1.86"
  17. tinyjson = "2.5.1"
  18. url = "2.5.4"
  19. # Daemon
  20. easy-parallel = "3.3.1"
  21. signal-hook-async-std = "0.2.2"
  22. signal-hook = "0.3.17"
  23. simplelog = "0.12.2"
  24. smol = "2.0.2"
  25. # Argument parsing
  26. serde = {version = "1.0.217", features = ["derive"]}
  27. structopt = "0.3.26"
  28. structopt-toml = "0.5.1"
  29. # Database
  30. sled-overlay = "0.1.6"
  31. # Misc
  32. log = "0.4.25"
  33. lazy_static = "1.5.0"
  34. tar = "0.4.43"
  35. # Testing
  36. tempdir = "0.3.7"