1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00

32 lines
577 B
TOML
Raw Normal View History

2018-05-11 14:35:43 -07:00
[package]
name = "websocket-tcp-example"
2019-12-16 13:09:54 +06:00
version = "2.0.0"
2018-05-11 14:35:43 -07:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-29 15:08:35 -07:00
edition = "2018"
2018-05-11 14:35:43 -07:00
[[bin]]
name = "websocket-tcp-server"
2018-05-11 14:35:43 -07:00
path = "src/main.rs"
[[bin]]
name = "websocket-tcp-client"
2018-05-11 14:35:43 -07:00
path = "src/client.rs"
[dependencies]
2019-12-20 22:30:26 +06:00
actix = "0.9.0"
2019-12-25 20:48:33 +04:00
actix-web = "2.0.0"
2019-12-20 22:30:26 +06:00
actix-web-actors = "2.0.0"
2019-12-25 20:48:33 +04:00
actix-files = "0.2.1"
2019-12-16 13:09:54 +06:00
actix-rt = "1.0.0"
actix-codec = "0.2.0"
2019-03-29 15:08:35 -07:00
2019-12-16 13:09:54 +06:00
rand = "0.7"
bytes = "0.5.3"
byteorder = "1.2"
futures = "0.3"
2019-03-29 15:08:35 -07:00
env_logger = "0.6"
serde = { version = "1.0", features = ["derive"] }
2018-05-11 14:35:43 -07:00
serde_json = "1.0"
2019-12-16 13:09:54 +06:00
tokio = "0.2.4"
tokio-util = "0.2.0"