Cargo.toml 509 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "dao"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../../"
  7. features = ["rpc"]
  8. [dependencies]
  9. # Async
  10. smol = "1.2.5"
  11. futures = "0.3.24"
  12. async-std = {version = "1.12.0", features = ["attributes"]}
  13. async-trait = "0.1.57"
  14. async-channel = "1.7.1"
  15. async-executor = "1.4.1"
  16. # Misc
  17. clap = {version = "3.2.20", features = ["derive"]}
  18. log = "0.4.17"
  19. num_cpus = "1.13.1"
  20. simplelog = "0.12.0"
  21. url = "2.3.1"
  22. prettytable-rs = "0.9.0"
  23. # Encoding and parsing
  24. serde_json = "1.0.85"