Cargo.toml 948 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 = "0.4.2"
  14. # Misc
  15. log = "0.4.27"
  16. # JSON-RPC
  17. async-trait = "0.1.88"
  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.219", features = ["derive"]}
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"
  30. [patch.crates-io]
  31. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  32. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}