mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
33 lines
585 B
TOML
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.2"
|
|
actix-web-actors = "1.0.0-alpha.2"
|
|
actix-files = "0.1.0-alpha.1"
|
|
|
|
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"
|