Cargo.toml 406 B

12345678910111213141516171819202122
  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. futures = "0.3.28"
  11. pin-project = "1.1.0"
  12. thiserror = "1.0.40"
  13. tokio = { version = "1.28.2", features = [
  14. "macros",
  15. "rt-multi-thread",
  16. "sync",
  17. "time",
  18. ] }
  19. warp = "0.3.5"