Cargo.toml 412 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "ircd"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../"
  7. features = ["net", "rpc", "cli"]
  8. [dependencies]
  9. # Async
  10. smol = "1.2.5"
  11. futures = "0.3.19"
  12. async-std = "1.10.0"
  13. async-trait = "0.1.52"
  14. async-channel = "1.6.1"
  15. async-executor = "1.4.1"
  16. # Crypto
  17. rand = "0.8.4"
  18. # Misc
  19. clap = "3.0.7"
  20. log = "0.4.14"
  21. simplelog = "0.11.2"
  22. # Encoding and parsing
  23. serde_json = "1.0.74"