mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
20 lines
278 B
TOML
20 lines
278 B
TOML
[package]
|
|
name = "websocket-chat-broker"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
actix = "0.12"
|
|
actix-broker = "0.4"
|
|
actix-files = "0.6"
|
|
actix-web = "4"
|
|
actix-web-actors = "4"
|
|
|
|
env_logger = "0.9"
|
|
log = "0.4"
|
|
rand = "0.8"
|