2018-09-18 11:19:45 +01:00
|
|
|
[package]
|
2020-04-09 01:54:28 +01:00
|
|
|
name = "websocket-chat-broker"
|
2022-02-02 01:45:20 +00:00
|
|
|
version = "1.0.0"
|
2022-02-02 01:43:51 +00:00
|
|
|
edition = "2021"
|
2018-09-18 11:19:45 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "server"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-11-05 21:11:14 +02:00
|
|
|
actix = "0.10"
|
|
|
|
actix-broker = "0.3.1"
|
|
|
|
actix-files = "0.4"
|
2020-09-12 16:49:45 +01:00
|
|
|
actix-rt = "1"
|
2020-11-05 21:11:14 +02:00
|
|
|
actix-web = "3"
|
|
|
|
actix-web-actors = "3"
|
2020-12-14 19:30:06 +08:00
|
|
|
env_logger = "0.8"
|
2020-04-09 01:54:28 +01:00
|
|
|
futures = "0.3"
|
|
|
|
log = "0.4"
|
|
|
|
rand = "0.7"
|