Cargo.toml 876 B

123456789101112131415161718192021222324252627282930313233
  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 = ["geode", "rpc"]}
  12. darkfi-serial = {path = "../../../src/serial", features = ["hash"]}
  13. # Misc
  14. async-trait = "0.1.73"
  15. blake3 = "1.4.1"
  16. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  17. log = "0.4.20"
  18. tinyjson = "2.5.1"
  19. url = "2.4.0"
  20. # Daemon
  21. easy-parallel = "3.3.0"
  22. signal-hook-async-std = "0.2.2"
  23. signal-hook = "0.3.17"
  24. simplelog = "0.12.1"
  25. smol = "1.3.0"
  26. # Argument parsing
  27. serde = {version = "1.0.185", features = ["derive"]}
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"