1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/websocket-chat-broker/Cargo.toml
Christopher Ricketts 8edf86e4b8 WebSocket Chat example using actix-broker (#44)
WebSocket Chat Example rewrite with actix-broker
2018-09-18 13:19:45 +03:00

19 lines
324 B
TOML

[package]
name = "websocket-broker-example"
version = "0.1.0"
authors = ["Chris Ricketts <chris.ricketts@steribar.com>"]
workspace = "../"
[[bin]]
name = "server"
path = "src/main.rs"
[dependencies]
rand = "*"
futures = "0.1.24"
actix = "0.7"
actix-web = "0.7"
actix-broker = "0.1.4"
log = "0.4.5"
simple_logger = "0.5.0"