Cargo.toml 497 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "dchat"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "Demo chat to document darkfi net code"
  6. [dependencies]
  7. darkfi = {path = "../../", features = ["net", "rpc"]}
  8. # Async
  9. async-std = "1.12.0"
  10. async-trait = "0.1.57"
  11. async-executor = "1.4.1"
  12. async-channel = "1.6.1"
  13. easy-parallel = "3.2.0"
  14. smol = "1.2.5"
  15. num_cpus = "1.13.1"
  16. # Misc
  17. log = "0.4.17"
  18. simplelog = "0.12.0"
  19. url = "2.2.2"
  20. # Encoding and parsing
  21. serde = {version = "1.0.142", features = ["derive"]}
  22. toml = "0.5.9"