Cargo.toml 517 B

123456789101112131415161718192021222324252627
  1. [package]
  2. edition = "2021"
  3. name = "drama"
  4. version = "0.1.0"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [[bin]]
  7. name = "test-ws"
  8. path = "tests/websocket.rs"
  9. [dependencies]
  10. async-trait = "0.1.68"
  11. flume = "0.10.14"
  12. futures = "0.3.28"
  13. parking_lot = "0.12.1"
  14. pin-project = "1.1.0"
  15. thiserror = "1.0.40"
  16. tokio = { version = "1.28.2", features = [
  17. "macros",
  18. "rt-multi-thread",
  19. "sync",
  20. "time",
  21. ] }
  22. tokio-tungstenite = "0.19.0"
  23. tracing = "0.1.37"
  24. warp = "0.3.5"