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]
|
2023-01-02 21:33:43 +01:00
|
|
|
actix.workspace = true
|
|
|
|
actix-broker.workspace = true
|
|
|
|
actix-files.workspace = true
|
|
|
|
actix-web.workspace = true
|
|
|
|
actix-web-actors.workspace = true
|
2022-02-18 02:44:53 +01:00
|
|
|
|
2022-12-30 17:25:40 +01:00
|
|
|
env_logger.workspace = true
|
|
|
|
log.workspace = true
|
2023-01-02 21:35:37 +01:00
|
|
|
rand.workspace = true
|