2022-07-11 02:44:46 +02:00
|
|
|
[package]
|
2024-07-20 08:55:03 +02:00
|
|
|
name = "websockets-echo-actorless-example"
|
2022-07-11 02:44:46 +02:00
|
|
|
version = "1.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-07-22 02:26:59 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "websocket-server"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "websocket-client"
|
|
|
|
path = "src/client.rs"
|
|
|
|
|
2022-07-11 02:44:46 +02:00
|
|
|
[dependencies]
|
2023-01-02 21:33:43 +01:00
|
|
|
actix-files.workspace = true
|
|
|
|
actix-web.workspace = true
|
|
|
|
actix-ws.workspace = true
|
2024-07-22 02:26:59 +02:00
|
|
|
awc.workspace = true
|
2022-12-30 17:25:40 +01:00
|
|
|
env_logger.workspace = true
|
2024-07-22 02:26:59 +02:00
|
|
|
futures-util = { workspace = true, features = ["sink"] }
|
2022-12-30 17:25:40 +01:00
|
|
|
log.workspace = true
|
2023-01-02 21:33:43 +01:00
|
|
|
tokio = { workspace = true, features = ["rt", "time", "macros"] }
|
2024-07-22 02:26:59 +02:00
|
|
|
tokio-stream.workspace = true
|