Cargo.toml 453 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "ircd"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../"
  7. features = ["net", "rpc"]
  8. [dependencies]
  9. # Async
  10. smol = "1.2.5"
  11. futures = "0.3.21"
  12. async-std = "1.11.0"
  13. async-trait = "0.1.53"
  14. async-channel = "1.6.1"
  15. async-executor = "1.4.1"
  16. easy-parallel = "3.2.0"
  17. # Crypto
  18. rand = "0.8.5"
  19. # Misc
  20. clap = "3.1.6"
  21. log = "0.4.16"
  22. simplelog = "0.12.0-alpha1"
  23. fxhash = "0.2.1"
  24. # Encoding and parsing
  25. serde_json = "1.0.79"