mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
26 lines
515 B
TOML
26 lines
515 B
TOML
[package]
|
|
name = "websocket"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "websocket-server"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "websocket-client"
|
|
path = "src/client.rs"
|
|
|
|
[dependencies]
|
|
actix.workspace = true
|
|
actix-files.workspace = true
|
|
actix-web.workspace = true
|
|
actix-web-actors.workspace = true
|
|
awc.workspace = true
|
|
|
|
env_logger.workspace = true
|
|
futures-util = { workspace = true, features = ["sink"] }
|
|
log.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-stream.workspace = true
|