2022-07-11 02:44:46 +02:00
|
|
|
[package]
|
|
|
|
name = "websocket-echo-actorless-example"
|
|
|
|
version = "1.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-files = { workspace = true }
|
|
|
|
actix-web = { workspace = true }
|
|
|
|
actix-ws = { workspace = true }
|
2022-07-11 02:44:46 +02:00
|
|
|
awc = "3"
|
|
|
|
|
2022-12-11 16:25:57 +01:00
|
|
|
env_logger = "0.10"
|
2022-07-12 02:08:15 +02:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2022-07-11 02:44:46 +02:00
|
|
|
log = "0.4"
|
2022-07-12 02:08:15 +02:00
|
|
|
tokio = { version = "1.13.1", features = ["rt", "macros", "sync", "time"] }
|