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