1
0
mirror of https://github.com/actix/examples synced 2025-06-27 01:27:43 +02:00

Add rust client to echo-actorless

- Make it easier for users to find rust code they can use for the client
- Remove the need to install websocat to get cli
This commit is contained in:
One
2024-07-21 20:26:59 -04:00
parent 27be660389
commit 21b6cd1d36
3 changed files with 21 additions and 2 deletions

View File

@ -3,11 +3,21 @@ name = "websockets-echo-actorless-example"
version = "1.0.0"
edition = "2021"
[[bin]]
name = "websocket-server"
path = "src/main.rs"
[[bin]]
name = "websocket-client"
path = "src/client.rs"
[dependencies]
actix-files.workspace = true
actix-web.workspace = true
actix-ws.workspace = true
awc.workspace = true
env_logger.workspace = true
futures-util.workspace = true
futures-util = { workspace = true, features = ["sink"] }
log.workspace = true
tokio = { workspace = true, features = ["rt", "time", "macros"] }
tokio-stream.workspace = true