Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. # Async
  14. smol = "1.3.0"
  15. async-std = {version = "1.12.0", features = ["attributes"]}
  16. async-trait = "0.1.68"
  17. easy-parallel = "3.3.0"
  18. futures = "0.3.28"
  19. # Misc
  20. libc = "0.2.141"
  21. log = "0.4.17"
  22. simplelog = "0.12.1"
  23. rand = "0.8.5"
  24. chrono = "0.4.24"
  25. thiserror = "1.0.40"
  26. ctrlc = { version = "3.2.5", features = ["termination"] }
  27. url = "2.3.1"
  28. # Encoding and parsing
  29. serde = {version = "1.0.160", features = ["derive"]}
  30. serde_json = "1.0.96"
  31. structopt = "0.3.26"
  32. structopt-toml = "0.5.1"
  33. crypto_box = {version = "0.8.2", features = ["std"]}
  34. hex = "0.4.3"
  35. bs58 = "0.4.0"
  36. toml = "0.7.3"