Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "taud"
  3. description = "Encrypted tasks management app using peer-to-peer network and raft consensus."
  4. version = "0.3.0"
  5. edition = "2021"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. keywords = []
  11. categories = []
  12. [dependencies]
  13. darkfi = { path = "../../../", features = ["rpc", "raft", "net"]}
  14. # Async
  15. smol = "1.2.5"
  16. async-std = {version = "1.12.0", features = ["attributes"]}
  17. async-trait = "0.1.57"
  18. async-channel = "1.6.1"
  19. async-executor = "1.4.1"
  20. easy-parallel = "3.2.0"
  21. futures = "0.3.21"
  22. # Misc
  23. log = "0.4.17"
  24. simplelog = "0.12.0"
  25. rand = "0.8.5"
  26. chrono = "0.4.19"
  27. thiserror = "1.0.32"
  28. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
  29. url = "2.2.2"
  30. fxhash = "0.2.1"
  31. # Encoding and parsing
  32. serde = {version = "1.0.142", features = ["derive"]}
  33. serde_json = "1.0.83"
  34. structopt = "0.3.26"
  35. structopt-toml = "0.5.1"
  36. crypto_box = {version = "0.7.2", features = ["std"]}
  37. hex = "0.4.3"
  38. bs58 = "0.4.0"
  39. toml = "0.5.9"