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

32 lines
577 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]
2019-12-20 17:30:26 +01:00
actix = "0.9.0"
2019-12-25 17:48:33 +01:00
actix-web = "2.0.0"
2019-12-20 17:30:26 +01:00
actix-web-actors = "2.0.0"
2019-12-25 17:48:33 +01:00
actix-files = "0.2.1"
2019-12-16 08:09:54 +01:00
actix-rt = "1.0.0"
actix-codec = "0.2.0"
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"
2019-03-29 23:08:35 +01:00
env_logger = "0.6"
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"
tokio-util = "0.2.0"