1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-25 00:12:59 +01:00
actix-extras/examples/websocket-chat/Cargo.toml

30 lines
483 B
TOML
Raw Normal View History

2017-10-21 02:16:17 +02:00
[package]
name = "websocket-example"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-01-01 06:55:25 +01:00
workspace = "../.."
2017-10-21 02:16:17 +02:00
[[bin]]
2017-10-21 08:12:36 +02:00
name = "server"
2017-10-21 02:16:17 +02:00
path = "src/main.rs"
[[bin]]
name = "client"
path = "src/client.rs"
[dependencies]
rand = "*"
bytes = "0.4"
byteorder = "1.1"
futures = "0.1"
tokio-io = "0.1"
tokio-core = "0.1"
2017-10-21 08:12:36 +02:00
env_logger = "*"
2017-10-21 02:16:17 +02:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2018-01-28 10:04:58 +01:00
actix = { git="https://github.com/actix/actix.git" }
2018-01-14 04:04:07 +01:00
actix-web = { path="../../" }