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