Cargo.toml 823 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "taud"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies]
  6. darkfi = { path = "../../../", features = ["rpc", "raft", "net"]}
  7. # Async
  8. smol = "1.2.5"
  9. async-std = {version = "1.11.0", features = ["attributes"]}
  10. async-trait = "0.1.53"
  11. async-channel = "1.6.1"
  12. async-executor = "1.4.1"
  13. easy-parallel = "3.2.0"
  14. futures = "0.3.21"
  15. # Misc
  16. clap = {version = "3.1.12", features = ["derive"]}
  17. log = "0.4.16"
  18. num_cpus = "1.13.1"
  19. simplelog = "0.12.0"
  20. rand = "0.8.5"
  21. chrono = "0.4.19"
  22. thiserror = "1.0.30"
  23. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
  24. # Encoding and parsing
  25. serde = {version = "1.0.136", features = ["derive"]}
  26. serde_json = "1.0.79"
  27. structopt = "0.3.26"
  28. structopt-toml = "0.5.0"
  29. crypto_box = {version = "0.7.2", features = ["std"]}
  30. hex = "0.4.3"