Cargo.toml 470 B

12345678910111213141516171819202122232425
  1. [package]
  2. edition = "2021"
  3. name = "actors"
  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. warp = "0.3.5"