Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "blockchain-storage-metrics"
  3. version = "0.4.1"
  4. description = "Experimental script to grab blocks from darkfid and measure their 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", "rpc"]}
  13. darkfi-serial = {path = "../../../src/serial"}
  14. # Misc
  15. tracing = "0.1.44"
  16. # JSON-RPC
  17. async-trait = "0.1.89"
  18. tinyjson = "2.5.1"
  19. url = "2.5.7"
  20. # Daemon
  21. easy-parallel = "3.3.1"
  22. signal-hook-async-std = "0.4.0"
  23. signal-hook = "0.4.1"
  24. tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] }
  25. tracing-appender = "0.2.4"
  26. smol = "2.0.2"
  27. # Argument parsing
  28. serde = {version = "1.0.228", features = ["derive"]}
  29. structopt = "0.3.26"
  30. structopt-toml = "0.5.1"
  31. [patch.crates-io]
  32. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  33. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}