Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [package]
  2. name = "fud"
  3. description = "File-sharing Utility Daemon, using DHT for records discovery."
  4. version = "0.5.0"
  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://codeberg.org/darkrenaissance/darkfi"
  10. [lib]
  11. name = "fud"
  12. path = "src/lib.rs"
  13. [[bin]]
  14. name = "fud"
  15. path = "src/main.rs"
  16. [dependencies]
  17. darkfi = {path = "../../../", features = ["async-daemonize", "geode", "rpc", "dht", "sled-overlay"]}
  18. darkfi-sdk = {path = "../../../src/sdk"}
  19. darkfi-serial = {version = "0.5.0", features = ["hash"]}
  20. # Encoding
  21. bs58 = "0.5.1"
  22. sha2 = "0.10.9"
  23. # Misc
  24. async-trait = "0.1.88"
  25. blake3 = "1.8.2"
  26. rand = "0.8.5"
  27. log = "0.4.27"
  28. tinyjson = "2.5.1"
  29. url = "2.5.4"
  30. num-bigint = "0.4.6"
  31. # Daemon
  32. easy-parallel = "3.3.1"
  33. futures = "0.3.31"
  34. signal-hook-async-std = "0.3.0"
  35. signal-hook = "0.3.18"
  36. simplelog = "0.12.2"
  37. smol = "2.0.2"
  38. # Equi-X
  39. blake2 = "0.10.6"
  40. equix = "0.2.5"
  41. # Database
  42. sled-overlay = "0.1.9"
  43. # Argument parsing
  44. serde = {version = "1.0.219", features = ["derive"]}
  45. structopt = "0.3.26"
  46. structopt-toml = "0.5.1"
  47. [lints]
  48. workspace = true