Cargo.toml 612 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "taud"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../"
  7. features = ["rpc", "net"]
  8. [dependencies]
  9. # Async
  10. smol = "1.2.5"
  11. futures = "0.3.21"
  12. async-std = {version = "1.11.0", features = ["attributes"]}
  13. async-trait = "0.1.53"
  14. async-channel = "1.6.1"
  15. async-executor = "1.4.1"
  16. easy-parallel = "3.2.0"
  17. # Misc
  18. clap = {version = "3.1.6", features = ["derive"]}
  19. log = "0.4.16"
  20. num_cpus = "1.13.1"
  21. simplelog = "0.12.0-alpha1"
  22. rand = "0.8.5"
  23. chrono = "0.4.19"
  24. thiserror = "1.0.24"
  25. # Encoding and parsing
  26. serde_json = "1.0.79"
  27. serde = {version = "1.0.136", features = ["derive"]}