Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 = ["bs58", "async-daemonize", "event-graph", "rpc"]}
  18. darkfi-serial = {path = "../../../src/serial"}
  19. # Misc
  20. async-trait = "0.1.73"
  21. bs58 = "0.5.0"
  22. chrono = "0.4.26"
  23. crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
  24. futures = "0.3.28"
  25. hex = "0.4.3"
  26. libc = "0.2.147"
  27. log = "0.4.20"
  28. rand = "0.8.5"
  29. thiserror = "1.0.47"
  30. tinyjson = "2.5.1"
  31. toml = "0.7.6"
  32. url = "2.4.1"
  33. # Daemon
  34. easy-parallel = "3.3.0"
  35. signal-hook-async-std = "0.2.2"
  36. signal-hook = "0.3.17"
  37. simplelog = "0.12.1"
  38. smol = "1.3.0"
  39. # Argument parsing
  40. serde = {version = "1.0.188", features = ["derive"]}
  41. structopt = "0.3.26"
  42. structopt-toml = "0.5.1"