Cargo.toml 1022 B

123456789101112131415161718192021222324252627282930313233343536373839
  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.3.0"
  15. async-std = {version = "1.12.0", features = ["attributes"]}
  16. async-trait = "0.1.59"
  17. easy-parallel = "3.2.0"
  18. futures = "0.3.25"
  19. # Misc
  20. log = "0.4.17"
  21. simplelog = "0.12.0"
  22. rand = "0.8.5"
  23. chrono = "0.4.23"
  24. thiserror = "1.0.37"
  25. ctrlc = { version = "3.2.4", features = ["termination"] }
  26. url = "2.3.1"
  27. # Encoding and parsing
  28. serde = {version = "1.0.150", features = ["derive"]}
  29. serde_json = "1.0.89"
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"
  32. crypto_box = {version = "0.8.2", features = ["std"]}
  33. hex = "0.4.3"
  34. bs58 = "0.4.0"
  35. toml = "0.5.9"