Cargo.toml 573 B

12345678910111213141516171819202122232425
  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.83"
  12. blake3 = "1.5.4"
  13. darkfi = {path = "../../../", features = ["dht"]}
  14. darkfi-serial = {path = "../../../src/serial", features = ["derive", "crypto"]}
  15. easy-parallel = "3.3.1"
  16. log = "0.4.22"
  17. rand = "0.8.5"
  18. simplelog = "0.12.2"
  19. smol = "2.0.2"
  20. url = "2.5.2"
  21. [lints]
  22. workspace = true