mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
21 lines
310 B
TOML
21 lines
310 B
TOML
[package]
|
|
name = "websocket-chat-broker"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
actix = "0.10"
|
|
actix-broker = "0.3.1"
|
|
actix-files = "0.4"
|
|
actix-rt = "1"
|
|
actix-web = "3"
|
|
actix-web-actors = "3"
|
|
env_logger = "0.8"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
rand = "0.7"
|