Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. # Misc
  17. log = "0.4.22"
  18. sled-overlay = "0.1.6"
  19. # JSON-RPC
  20. async-trait = "0.1.83"
  21. tinyjson = "2.5.1"
  22. url = "2.5.2"
  23. # Daemon
  24. easy-parallel = "3.3.1"
  25. signal-hook-async-std = "0.2.2"
  26. signal-hook = "0.3.17"
  27. simplelog = "0.12.2"
  28. smol = "2.0.2"
  29. # Argument parsing
  30. serde = {version = "1.0.210", features = ["derive"]}
  31. structopt = "0.3.26"
  32. structopt-toml = "0.5.1"
  33. [patch.crates-io]
  34. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  35. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}