Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. [package]
  2. name = "taud"
  3. description = "Encrypted tasks management app using peer-to-peer network and raft consensus."
  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. [lib]
  11. name = "taud"
  12. path = "src/lib.rs"
  13. [[bin]]
  14. name = "taud"
  15. path = "src/main.rs"
  16. [dependencies]
  17. darkfi = { path = "../../../", features = [
  18. "bs58",
  19. "async-daemonize",
  20. "event-graph",
  21. "rpc",
  22. ] }
  23. darkfi-serial = { path = "../../../src/serial" }
  24. # Event Graph DB
  25. sled = "0.34.7"
  26. # Crypto
  27. blake3 = "1.5.0"
  28. crypto_box = { version = "0.9.1", features = ["std", "chacha20"] }
  29. rand = "0.8.5"
  30. # Encoding and parsing
  31. bs58 = "0.5.0"
  32. hex = "0.4.3"
  33. toml = "0.8.10"
  34. # Misc
  35. async-trait = "0.1.77"
  36. chrono = "0.4.35"
  37. futures = "0.3.30"
  38. libc = "0.2.153"
  39. log = "0.4.21"
  40. thiserror = "1.0.57"
  41. tinyjson = "2.5.1"
  42. url = "2.5.0"
  43. # Daemon
  44. easy-parallel = "3.3.1"
  45. signal-hook-async-std = "0.2.2"
  46. signal-hook = "0.3.17"
  47. simplelog = "0.12.2"
  48. smol = "1.3.0"
  49. # Argument parsing
  50. serde = { version = "1.0.197", features = ["derive"] }
  51. structopt = "0.3.26"
  52. structopt-toml = "0.5.1"