1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-13 04:05:25 +01:00

30 lines
476 B
TOML
Raw Normal View History

2017-10-20 17:16:17 -07:00
[package]
name = "websocket-example"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2017-12-31 21:55:25 -08:00
workspace = "../.."
2017-10-20 17:16:17 -07:00
[[bin]]
2017-10-20 23:12:36 -07:00
name = "server"
2017-10-20 17:16:17 -07: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-20 23:12:36 -07:00
env_logger = "*"
2017-10-20 17:16:17 -07:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2018-01-07 19:40:42 -08:00
actix = "^0.4.2"
2018-01-05 13:30:21 -08:00
actix-web = { git = "https://github.com/actix/actix-web" }