Cargo.toml 485 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "dao-cli"
  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.21"
  12. async-std = {version = "1.12.0", features = ["attributes"]}
  13. async-trait = "0.1.57"
  14. async-channel = "1.6.1"
  15. async-executor = "1.4.1"
  16. # Misc
  17. clap = {version = "3.2.16", features = ["derive"]}
  18. log = "0.4.17"
  19. num_cpus = "1.13.1"
  20. simplelog = "0.12.0"
  21. url = "2.2.2"
  22. # Encoding and parsing
  23. serde_json = "1.0.83"