Cargo.toml 424 B

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