mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
25 lines
406 B
TOML
25 lines
406 B
TOML
[package]
|
|
name = "websocket-chat-broker"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Chris Ricketts <chris.ricketts@steribar.com>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
actix = "0.9"
|
|
actix-broker = "0.3"
|
|
actix-files = "0.2"
|
|
actix-rt = "1"
|
|
actix-web = "2"
|
|
actix-web-actors = "2"
|
|
env_logger = "0.7"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
rand = "0.7"
|