Cargo.toml 762 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "fud"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "File-sharing Utility Daemon, using DHT for records discovery."
  6. authors = ["darkfi <dev@dark.fi>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-channel = "1.6.1"
  12. async-executor = "1.4.1"
  13. async-std = "1.12.0"
  14. async-trait = "0.1.57"
  15. blake3 = "1.3.1"
  16. ctrlc = { version = "3.2.3", features = ["termination"] }
  17. darkfi = {path = "../../../../", features = ["dht"]}
  18. easy-parallel = "3.2.0"
  19. futures-lite = "1.12.0"
  20. log = "0.4.17"
  21. serde_json = "1.0.83"
  22. simplelog = "0.12.0"
  23. url = "2.2.2"
  24. # Argument parsing
  25. serde = "1.0.142"
  26. serde_derive = "1.0.142"
  27. structopt = "0.3.26"
  28. structopt-toml = "0.5.1"
  29. [workspace]