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

32 lines
599 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]
2022-03-04 04:45:03 +01:00
actix = "0.13"
actix-codec = "0.4.1"
2022-02-25 22:07:22 +01:00
actix-files = "0.6"
actix-web = "4"
2022-03-04 04:45:03 +01:00
actix-web-actors = "4.1"
2019-03-29 23:08:35 +01:00
2019-12-16 08:09:54 +01:00
byteorder = "1.2"
bytes = "1"
env_logger = "0.9"
2019-12-16 08:09:54 +01:00
futures = "0.3"
log = "0.4"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2022-02-18 02:44:53 +01:00
tokio = { version = "1.13.1", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec"] }
tokio-stream = "0.1.8"