Cargo.toml 605 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "daocli"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies.darkfi]
  7. path = "../../"
  8. features = ["rpc"]
  9. [dependencies]
  10. # Async
  11. smol = "1.2.5"
  12. futures = "0.3.19"
  13. async-std = {version = "1.10.0", features = ["attributes"]}
  14. async-trait = "0.1.52"
  15. async-channel = "1.6.1"
  16. async-executor = "1.4.1"
  17. easy-parallel = "3.2.0"
  18. # Misc
  19. clap = {version = "3.0.7", features = ["derive"]}
  20. log = "0.4.14"
  21. num_cpus = "1.13.1"
  22. simplelog = "0.11.2"
  23. url = "2.2.2"
  24. # Encoding and parsing
  25. serde_json = "1.0.74"