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-02-18 02:44:53 +01:00
|
|
|
actix = "0.12"
|
|
|
|
actix-files = "0.6.0-beta.16"
|
|
|
|
actix-web = "4.0.0-rc.3"
|
|
|
|
actix-web-actors = "4.0.0-beta.12"
|
2019-03-29 23:08:35 +01:00
|
|
|
|
2022-02-18 02:44:53 +01:00
|
|
|
env_logger = "0.9"
|
|
|
|
log = "0.4"
|
|
|
|
rand = "0.8"
|
2020-09-12 17:49:45 +02:00
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|