1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-09 05:08:32 +00:00
actix-web/examples/websocket/Cargo.toml

22 lines
379 B
TOML
Raw Normal View History

[package]
name = "websocket"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-01-30 19:17:17 +00:00
workspace = "../.."
[[bin]]
name = "server"
path = "src/main.rs"
2018-01-28 06:03:03 +00:00
[[bin]]
name = "client"
path = "src/client.rs"
[dependencies]
env_logger = "*"
futures = "0.1"
2018-01-28 06:03:03 +00:00
tokio-core = "0.1"
2018-01-28 09:04:58 +00:00
#actix = "^0.4.6"
2018-01-28 06:03:03 +00:00
actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path="../../" }