1
0
mirror of https://github.com/actix/examples synced 2025-02-02 17:39:05 +01:00

32 lines
767 B
TOML
Raw Normal View History

2018-05-11 14:35:43 -07:00
[package]
name = "websocket-tcp-example"
2022-02-02 01:45:20 +00:00
version = "1.0.0"
2022-02-02 01:43:51 +00:00
edition = "2021"
2018-05-11 14:35:43 -07:00
[[bin]]
name = "websocket-tcp-server"
2018-05-11 14:35:43 -07:00
path = "src/main.rs"
[[bin]]
name = "websocket-tcp-client"
2018-05-11 14:35:43 -07:00
path = "src/client.rs"
[dependencies]
actix = { workspace = true }
actix-codec = { workspace = true }
actix-files = { workspace = true }
actix-web = { workspace = true }
actix-web-actors = { workspace = true }
2019-03-29 15:08:35 -07:00
2019-12-16 13:09:54 +06:00
byteorder = "1.2"
bytes = "1"
env_logger.workspace = true
2022-07-12 01:08:56 +01:00
futures-util = { version = "0.3.17", default-features = false, features = ["std", "sink"] }
log.workspace = true
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2022-02-18 01:44:53 +00:00
tokio = { version = "1.13.1", features = ["full"] }
2022-03-04 16:28:40 +00:00
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = "0.1.8"