Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [package]
  2. name = "taud"
  3. description = "Encrypted tasks management app using peer-to-peer network and Event Graph."
  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 = "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. "zk"
  23. ] }
  24. darkfi-sdk = {path = "../../../src/sdk", features = ["async"]}
  25. darkfi-serial = {path = "../../../src/serial"}
  26. # Event Graph DB
  27. sled-overlay = "0.1.20"
  28. # Crypto
  29. blake3 = "1.8.5"
  30. crypto_box = { version = "0.9.1", features = ["std", "chacha20"] }
  31. rand = "0.8.6"
  32. # Encoding and parsing
  33. bs58 = "0.5.1"
  34. toml = "0.9.8"
  35. # Misc
  36. async-trait = "0.1.89"
  37. chrono = "0.4.44"
  38. futures = "0.3.32"
  39. libc = "0.2.186"
  40. tracing = "0.1.44"
  41. thiserror = "2.0.18"
  42. tinyjson = "2.5.1"
  43. url = "2.5.8"
  44. # Daemon
  45. easy-parallel = "3.3.1"
  46. signal-hook-async-std = "0.4.0"
  47. signal-hook = "0.4.4"
  48. tracing-subscriber = { version = "0.3.23", default-features = false, features = ["fmt"] }
  49. tracing-appender = "0.2.5"
  50. smol = "2.0.2"
  51. # Argument parsing
  52. serde = { version = "1.0.228", features = ["derive"] }
  53. structopt = "0.3.26"
  54. structopt-toml = "0.5.1"
  55. [lints]
  56. workspace = true