Cargo.toml 806 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "fud"
  3. description = "File-sharing Utility Daemon, using DHT for records discovery."
  4. version = "0.4.1"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. [dependencies]
  11. darkfi = {path = "../../../", features = ["async-daemonize", "geode", "rpc"]}
  12. darkfi-serial = {path = "../../../src/serial", features = ["hash"]}
  13. # Misc
  14. async-trait = "0.1.77"
  15. blake3 = "1.5.0"
  16. log = "0.4.21"
  17. tinyjson = "2.5.1"
  18. url = "2.5.0"
  19. # Daemon
  20. easy-parallel = "3.3.1"
  21. signal-hook-async-std = "0.2.2"
  22. signal-hook = "0.3.17"
  23. simplelog = "0.12.2"
  24. smol = "1.3.0"
  25. # Argument parsing
  26. serde = {version = "1.0.197", features = ["derive"]}
  27. structopt = "0.3.26"
  28. structopt-toml = "0.5.1"