Cargo.toml 629 B

1234567891011121314151617181920212223242526272829303132
  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 = "1.9.0"
  12. async-executor = "1.5.1"
  13. async-std = "1.12.0"
  14. async-trait = "0.1.71"
  15. blake3 = "1.4.1"
  16. ctrlc = { version = "3.4.0", features = ["termination"] }
  17. easy-parallel = "3.3.0"
  18. futures-lite = "1.13.0"
  19. log = "0.4.19"
  20. serde_json = "1.0.102"
  21. simplelog = "0.12.1"
  22. url = "2.4.0"
  23. # Argument parsing
  24. serde = "1.0.171"
  25. serde_derive = "1.0.171"
  26. structopt = "0.3.26"
  27. structopt-toml = "0.5.1"
  28. [workspace]