Cargo.toml 510 B

1234567891011121314151617181920212223242526272829
  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"
  10. async-trait = "0.1.56"
  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. termion = "1.5.6"
  21. # Encoding and parsing
  22. serde = {version = "1.0.138", features = ["derive"]}
  23. toml = "0.4.2"