Cargo.toml 539 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "daod"
  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. log = "0.4.14"
  20. num_cpus = "1.13.1"
  21. simplelog = "0.11.2"
  22. # Encoding and parsing
  23. serde_json = "1.0.74"