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

32 lines
623 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 = "0.12"
actix-codec = "0.4.1"
actix-files = "0.6.0-beta.16"
actix-web = "4.0.0-rc.3"
actix-web-actors = "4.0.0-beta.11"
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"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec"] }
tokio-stream = "0.1.8"