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.0"
  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 = ["rpc", "raft", "net", "bs58"]}
  12. darkfi-serial = { path = "../../../src/serial" }
  13. # Async
  14. smol = "1.2.5"
  15. async-std = {version = "1.12.0", features = ["attributes"]}
  16. async-trait = "0.1.57"
  17. easy-parallel = "3.2.0"
  18. futures = "0.3.24"
  19. # Misc
  20. log = "0.4.17"
  21. simplelog = "0.12.0"
  22. rand = "0.8.5"
  23. chrono = "0.4.22"
  24. thiserror = "1.0.37"
  25. ctrlc = { version = "3.2.3", features = ["termination"] }
  26. url = "2.3.1"
  27. fxhash = "0.2.1"
  28. # Encoding and parsing
  29. serde = {version = "1.0.145", features = ["derive"]}
  30. serde_json = "1.0.85"
  31. structopt = "0.3.26"
  32. structopt-toml = "0.5.1"
  33. crypto_box = {version = "0.8.1", features = ["std"]}
  34. hex = "0.4.3"
  35. bs58 = "0.4.0"
  36. toml = "0.5.9"