Cargo.toml 659 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "dhtd"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../../"
  7. features = ["util"]
  8. [dependencies]
  9. async-channel = "1.6.1"
  10. async-executor = "1.4.1"
  11. async-std = "1.12.0"
  12. async-trait = "0.1.56"
  13. blake3 = "1.3.1"
  14. chrono = "0.4.19"
  15. ctrlc-async = {version = "3.2.2", default-features = false, features = ["async-std", "termination"]}
  16. easy-parallel = "3.2.0"
  17. futures = "0.3.21"
  18. futures-lite = "1.12.0"
  19. fxhash = "0.2.1"
  20. log = "0.4.17"
  21. rand = "0.8.5"
  22. serde_json = "1.0.82"
  23. simplelog = "0.12.0"
  24. url = "2.2.2"
  25. # Argument parsing
  26. serde = "1.0.138"
  27. serde_derive = "1.0.138"
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.0"
  30. [workspace]