Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "blockchain-explorer"
  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. [workspace]
  10. [dependencies]
  11. # Darkfi
  12. darkfi = {path = "../../../", features = ["async-daemonize", "validator"]}
  13. darkfi-sdk = {path = "../../../src/sdk"}
  14. darkfi-serial = "0.4.2"
  15. drk = {path = "../../../bin/drk"}
  16. # JSON-RPC
  17. async-trait = "0.1.85"
  18. tinyjson = "2.5.1"
  19. url = "2.5.4"
  20. # Daemon
  21. easy-parallel = "3.3.1"
  22. signal-hook-async-std = "0.2.2"
  23. signal-hook = "0.3.17"
  24. simplelog = "0.12.2"
  25. smol = "2.0.2"
  26. # Argument parsing
  27. serde = {version = "1.0.217", features = ["derive"]}
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"
  30. # Database
  31. sled-overlay = "0.1.6"
  32. # Misc
  33. log = "0.4.25"
  34. lazy_static = "1.5.0"
  35. tar = "0.4.43"
  36. # Testing
  37. tempdir = "0.3.7"
  38. [patch.crates-io]
  39. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  40. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}