Cargo.toml 976 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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", "rpc"]}
  12. darkfi-sdk = {path = "../../../src/sdk"}
  13. darkfi-serial = "0.4.2"
  14. # JSON-RPC
  15. async-trait = "0.1.88"
  16. tinyjson = "2.5.1"
  17. url = "2.5.4"
  18. # Daemon
  19. easy-parallel = "3.3.1"
  20. signal-hook-async-std = "0.3.0"
  21. signal-hook = "0.3.17"
  22. simplelog = "0.12.2"
  23. smol = "2.0.2"
  24. # Argument parsing
  25. serde = {version = "1.0.219", features = ["derive"]}
  26. structopt = "0.3.26"
  27. structopt-toml = "0.5.1"
  28. # Database
  29. sled-overlay = "0.1.7"
  30. # Misc
  31. log = "0.4.27"
  32. lazy_static = "1.5.0"
  33. tar = "0.4.44"
  34. toml = "0.8.22"
  35. thiserror = "2.0.12"
  36. # Testing
  37. tempdir = "0.3.7"