1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/websocket/Cargo.toml

26 lines
466 B
TOML
Raw Normal View History

[package]
name = "websocket"
2019-12-16 06:23:36 +01:00
version = "2.0.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-18 13:31:32 +01:00
edition = "2018"
[[bin]]
name = "websocket-server"
path = "src/main.rs"
[[bin]]
name = "websocket-client"
path = "src/client.rs"
[dependencies]
2019-12-16 06:23:36 +01:00
actix = "0.9.0-alpha.2"
actix-codec = "0.2.0"
actix-web = "2.0.0-alpha.6"
actix-web-actors = "2.0.0-alpha.1"
actix-files = "0.2.0-alpha.3"
actix-rt = "1.0.0"
awc = "1.0.0"
2019-03-18 13:31:32 +01:00
env_logger = "0.6"
2019-12-16 06:23:36 +01:00
futures = "0.3.1"
bytes = "0.5.3"