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