Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 = ["event-graph", "rpc", "bs58"]}
  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. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  28. log = "0.4.20"
  29. rand = "0.8.5"
  30. thiserror = "1.0.47"
  31. tinyjson = "2.5.1"
  32. toml = "0.7.6"
  33. url = "2.4.0"
  34. # Daemon
  35. easy-parallel = "3.3.0"
  36. signal-hook-async-std = "0.2.2"
  37. signal-hook = "0.3.17"
  38. simplelog = "0.12.1"
  39. smol = "1.3.0"
  40. # Argument parsing
  41. serde = {version = "1.0.185", features = ["derive"]}
  42. structopt = "0.3.26"
  43. structopt-toml = "0.5.1"