1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/websockets/chat-tcp/Cargo.toml

31 lines
655 B
TOML
Raw Normal View History

2018-05-11 23:35:43 +02:00
[package]
name = "websocket-tcp-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
2018-05-11 23:35:43 +02:00
[[bin]]
name = "websocket-tcp-server"
2018-05-11 23:35:43 +02:00
path = "src/main.rs"
[[bin]]
name = "websocket-tcp-client"
2018-05-11 23:35:43 +02: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 23:08:35 +01:00
2019-12-16 08:09:54 +01:00
byteorder = "1.2"
env_logger.workspace = true
futures-util = { workspace = true, features = ["sink"] }
log.workspace = true
2023-01-02 21:35:37 +01:00
rand.workspace = true
2023-01-02 21:35:11 +01:00
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["full"] }
2023-07-09 01:56:56 +02:00
tokio-util.workspace = true
tokio-stream = "0.1.8"