Cargo.toml 675 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "dchat"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "Demo chat to document darkfi net code"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. darkfi = {path = "../../", features = ["net", "rpc"]}
  9. # Async
  10. futures = "0.3.0"
  11. async-std = "1"
  12. async-trait = "0.1.56"
  13. async-executor = "1.4.1"
  14. async-channel = "1.6.1"
  15. easy-parallel = "3.2.0"
  16. smol = "1.2.5"
  17. # Misc
  18. simplelog = "0.12.0"
  19. ringbuffer = "0.8.4"
  20. url = "2.2.2"
  21. clap = {version = "3.2.8", features = ["derive"]}
  22. # Encoding and parsing
  23. serde = {version = "1.0.138", features = ["derive"]}
  24. structopt = "0.3.26"
  25. structopt-toml = "0.5.0"