Cargo.toml 750 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "raft-diag"
  3. version = "0.4.1"
  4. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  5. edition = "2021"
  6. [workspace]
  7. [dependencies]
  8. darkfi = {path = "../../../", features = ["raft"]}
  9. # Async
  10. smol = "1.3.0"
  11. async-std = {version = "1.12.0", features = ["attributes"]}
  12. async-trait = "0.1.68"
  13. async-channel = "1.8.0"
  14. async-executor = "1.5.1"
  15. easy-parallel = "3.3.0"
  16. futures = "0.3.28"
  17. # Misc
  18. log = "0.4.19"
  19. simplelog = "0.12.1"
  20. rand = "0.8.5"
  21. chrono = "0.4.26"
  22. thiserror = "1.0.40"
  23. ctrlc = { version = "3.4.0", features = ["termination"] }
  24. url = "2.4.0"
  25. fxhash = "0.2.1"
  26. # Encoding and parsing
  27. serde = {version = "1.0.164", features = ["derive"]}
  28. serde_json = "1.0.96"
  29. structopt = "0.3.26"
  30. hex = "0.4.3"
  31. bs58 = "0.5.0"
  32. toml = "0.7.4"