Cargo.toml 899 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "raft-tool"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../../"
  7. features = ["raft"]
  8. [dependencies]
  9. async-std = "1.11.0"
  10. sled = "0.34.7"
  11. # for taud
  12. crypto_box = {version = "0.7.2", features = ["std"]}
  13. hex = "0.4.3"
  14. log = "0.4.17"
  15. simplelog = "0.12.0"
  16. rand = "0.8.5"
  17. chrono = "0.4.19"
  18. url = "2.2.2"
  19. serde = {version = "1.0.137", features = ["derive"]}
  20. serde_json = "1.0.81"
  21. thiserror = "1.0.31"
  22. [workspace]