Cargo.toml 589 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "dhtd"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../../"
  7. features = ["dht"]
  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.57"
  13. blake3 = "1.3.1"
  14. ctrlc-async = {version = "3.2.2", default-features = false, features = ["async-std", "termination"]}
  15. easy-parallel = "3.2.0"
  16. futures-lite = "1.12.0"
  17. log = "0.4.17"
  18. serde_json = "1.0.83"
  19. simplelog = "0.12.0"
  20. url = "2.2.2"
  21. # Argument parsing
  22. serde = "1.0.142"
  23. serde_derive = "1.0.142"
  24. structopt = "0.3.26"
  25. structopt-toml = "0.5.1"
  26. [workspace]