Cargo.toml 693 B

1234567891011121314151617181920212223
  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://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-std = {version = "1.12.0", features = ["attributes"]}
  12. async-trait = "0.1.73"
  13. blake3 = "1.4.1"
  14. darkfi = {path = "../../../", features = ["dht"]}
  15. darkfi-serial = {path = "../../../src/serial", features = ["derive", "crypto"]}
  16. easy-parallel = "3.3.0"
  17. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  18. log = "0.4.20"
  19. rand = "0.8.5"
  20. simplelog = "0.12.1"
  21. smol = "1.3.0"
  22. url = "2.4.0"