1
0
mirror of https://github.com/actix/examples synced 2024-11-24 14:53:00 +01:00
examples/websocket-tcp-chat/Cargo.toml
2019-04-07 23:39:45 -07:00

33 lines
585 B
TOML

[package]
name = "websocket-tcp-example"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
workspace = ".."
edition = "2018"
[[bin]]
name = "websocket-tcp-server"
path = "src/main.rs"
[[bin]]
name = "websocket-tcp-client"
path = "src/client.rs"
[dependencies]
actix = "0.8.0-alpha.2"
actix-web = "1.0.0-alpha.4"
actix-web-actors = "1.0.0-alpha.3"
actix-files = "0.1.0-alpha.4"
rand = "0.6"
bytes = "0.4"
byteorder = "1.1"
futures = "0.1"
tokio-io = "0.1"
tokio-tcp = "0.1"
tokio-codec = "0.1"
env_logger = "0.6"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"