2022-07-11 21:19:29 +02:00
|
|
|
[package]
|
|
|
|
name = "websocket-chat-actorless-example"
|
|
|
|
version = "1.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-02 21:33:43 +01:00
|
|
|
actix-files.workspace = true
|
|
|
|
actix-web.workspace = true
|
|
|
|
actix-ws.workspace = true
|
|
|
|
awc.workspace = true
|
2022-07-11 21:19:29 +02:00
|
|
|
|
2023-01-02 21:38:03 +01:00
|
|
|
derive_more.workspace = true
|
2022-12-30 17:25:40 +01:00
|
|
|
env_logger.workspace = true
|
2023-01-02 21:33:43 +01:00
|
|
|
futures-util.workspace = true
|
2022-12-30 17:25:40 +01:00
|
|
|
log.workspace = true
|
2023-01-02 21:35:37 +01:00
|
|
|
rand.workspace = true
|
2023-01-02 21:33:43 +01:00
|
|
|
tokio = { workspace = true, features = ["rt", "time", "macros"] }
|