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

31 lines
543 B
TOML
Raw Normal View History

2018-05-11 23:35:43 +02:00
[package]
name = "websocket-tcp-example"
2019-12-16 08:09:54 +01:00
version = "2.0.0"
2018-05-11 23:35:43 +02:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-29 23:08:35 +01:00
edition = "2018"
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]
2020-09-12 17:49:45 +02:00
actix = "0.10"
actix-web = "3"
actix-web-actors = "3"
actix-files = "0.3"
actix-codec = "0.3"
2019-03-29 23:08:35 +01:00
2019-12-16 08:09:54 +01:00
rand = "0.7"
bytes = "0.5.3"
byteorder = "1.2"
futures = "0.3"
env_logger = "0.8"
serde = { version = "1.0", features = ["derive"] }
2018-05-11 23:35:43 +02:00
serde_json = "1.0"
2019-12-16 08:09:54 +01:00
tokio = "0.2.4"
2020-09-12 17:49:45 +02:00
tokio-util = "0.3"