mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
8edf86e4b8
WebSocket Chat Example rewrite with actix-broker
19 lines
324 B
TOML
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"
|