1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-15 13:02:54 +01:00

21 lines
320 B
TOML
Raw Normal View History

[package]
name = "websocket"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-01-30 11:17:17 -08:00
workspace = "../.."
[[bin]]
name = "server"
path = "src/main.rs"
2018-01-27 22:03:03 -08:00
[[bin]]
name = "client"
path = "src/client.rs"
[dependencies]
env_logger = "*"
futures = "0.1"
2018-01-27 22:03:03 -08:00
tokio-core = "0.1"
2018-02-17 13:33:38 -08:00
actix = "0.5"
2018-01-27 22:03:03 -08:00
actix-web = { path="../../" }