Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. [package]
  2. name = "taud"
  3. description = "Encrypted tasks management app using peer-to-peer network and Event Graph."
  4. version = "0.4.2"
  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 = "0.4.2"
  25. # Event Graph DB
  26. sled-overlay = "0.1.6"
  27. # Crypto
  28. blake3 = "1.6.0"
  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.8.20"
  34. # Misc
  35. async-trait = "0.1.86"
  36. chrono = "0.4.39"
  37. futures = "0.3.31"
  38. libc = "0.2.170"
  39. log = "0.4.26"
  40. thiserror = "2.0.11"
  41. tinyjson = "2.5.1"
  42. url = "2.5.4"
  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 = "2.0.2"
  49. # Argument parsing
  50. serde = { version = "1.0.218", features = ["derive"] }
  51. structopt = "0.3.26"
  52. structopt-toml = "0.5.1"
  53. [lints]
  54. workspace = true