Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. ] }
  23. darkfi-sdk = {path = "../../../src/sdk", features = ["async"]}
  24. darkfi-serial = {path = "../../../src/serial"}
  25. # Event Graph DB
  26. sled-overlay = "0.1.19"
  27. # Crypto
  28. blake3 = "1.8.2"
  29. crypto_box = { version = "0.9.1", features = ["std", "chacha20"] }
  30. rand = "0.8.5"
  31. # Encoding and parsing
  32. bs58 = "0.5.1"
  33. toml = "0.9.8"
  34. # Misc
  35. async-trait = "0.1.89"
  36. chrono = "0.4.42"
  37. futures = "0.3.31"
  38. libc = "0.2.178"
  39. tracing = "0.1.44"
  40. thiserror = "2.0.17"
  41. tinyjson = "2.5.1"
  42. url = "2.5.7"
  43. # Daemon
  44. easy-parallel = "3.3.1"
  45. signal-hook-async-std = "0.4.0"
  46. signal-hook = "0.4.1"
  47. tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] }
  48. tracing-appender = "0.2.4"
  49. smol = "2.0.2"
  50. # Argument parsing
  51. serde = { version = "1.0.228", features = ["derive"] }
  52. structopt = "0.3.26"
  53. structopt-toml = "0.5.1"
  54. [lints]
  55. workspace = true