Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. [dependencies]
  11. darkfi = { path = "../../../", features = ["event-graph", "rpc", "bs58"]}
  12. darkfi-serial = { path = "../../../src/serial" }
  13. # Misc
  14. async-trait = "0.1.71"
  15. bs58 = "0.5.0"
  16. chrono = "0.4.26"
  17. crypto_box = {version = "0.8.2", features = ["std"]}
  18. futures = "0.3.28"
  19. hex = "0.4.3"
  20. libc = "0.2.147"
  21. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  22. log = "0.4.19"
  23. rand = "0.8.5"
  24. serde_json = "1.0.100"
  25. thiserror = "1.0.43"
  26. toml = "0.7.6"
  27. url = "2.4.0"
  28. # Daemon
  29. async-std = {version = "1.12.0", features = ["attributes"]}
  30. easy-parallel = "3.3.0"
  31. signal-hook-async-std = "0.2.2"
  32. signal-hook = "0.3.15"
  33. simplelog = "0.12.1"
  34. smol = "1.3.0"
  35. # Argument parsing
  36. serde = {version = "1.0.167", features = ["derive"]}
  37. structopt = "0.3.26"
  38. structopt-toml = "0.5.1"