Cargo.toml 561 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "dhtd"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "DHT daemon"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://codeberg.org/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-trait = "0.1.88"
  12. blake3 = "1.8.1"
  13. darkfi = {path = "../../../", features = ["dht"]}
  14. darkfi-serial = {version = "0.4.2", features = ["derive", "crypto"]}
  15. easy-parallel = "3.3.1"
  16. log = "0.4.27"
  17. rand = "0.8.5"
  18. simplelog = "0.12.2"
  19. smol = "2.0.2"
  20. url = "2.5.4"
  21. [lints]
  22. workspace = true