2018-04-13 03:18:42 +02:00
|
|
|
[package]
|
|
|
|
name = "websocket-example"
|
2022-02-02 02:45:20 +01:00
|
|
|
version = "1.0.0"
|
2022-02-02 02:43:51 +01:00
|
|
|
edition = "2021"
|
2018-04-13 03:18:42 +02:00
|
|
|
|
|
|
|
[[bin]]
|
2018-09-24 10:57:36 +02:00
|
|
|
name = "websocket-chat-server"
|
2018-04-13 03:18:42 +02:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-21 15:49:28 +01:00
|
|
|
actix = { workspace = true }
|
|
|
|
actix-files = { workspace = true }
|
|
|
|
actix-web = { workspace = true }
|
|
|
|
actix-web-actors = { workspace = true }
|
2019-03-29 23:08:35 +01:00
|
|
|
|
2022-12-11 16:25:57 +01:00
|
|
|
env_logger = "0.10"
|
2022-02-18 02:44:53 +01:00
|
|
|
log = "0.4"
|
|
|
|
rand = "0.8"
|
2020-09-12 17:49:45 +02:00
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|