Cargo.toml 656 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "dhtd"
  3. version = "0.4.1"
  4. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  5. license = "AGPL-3.0-only"
  6. edition = "2021"
  7. [dependencies.darkfi]
  8. path = "../../../"
  9. features = ["dht"]
  10. [dependencies]
  11. async-channel = "2.3.1"
  12. async-executor = "1.13.1"
  13. async-std = "1.13.0"
  14. async-trait = "0.1.83"
  15. blake3 = "1.5.4"
  16. ctrlc = { version = "3.4.5", features = ["termination"] }
  17. easy-parallel = "3.3.1"
  18. futures-lite = "2.3.0"
  19. log = "0.4.22"
  20. serde_json = "1.0.128"
  21. simplelog = "0.12.2"
  22. url = "2.5.2"
  23. # Argument parsing
  24. serde = "1.0.210"
  25. serde_derive = "1.0.210"
  26. structopt = "0.3.26"
  27. structopt-toml = "0.5.1"
  28. [workspace]
  29. [lints]
  30. workspace = true