1
0
mirror of https://github.com/actix/examples synced 2024-11-27 16:02:57 +01:00
examples/websockets/chat-actorless/Cargo.toml

18 lines
442 B
TOML
Raw Normal View History

2022-07-11 21:19:29 +02:00
[package]
name = "websocket-chat-actorless-example"
version = "1.0.0"
edition = "2021"
[dependencies]
actix-files = { workspace = true }
actix-web = { workspace = true }
actix-ws = { workspace = true }
2022-07-11 21:19:29 +02:00
awc = "3"
derive_more = "0.99.5"
2022-12-11 16:25:57 +01:00
env_logger = "0.10"
2022-07-12 02:42:58 +02:00
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
2022-07-11 21:19:29 +02:00
log = "0.4"
rand = "0.8"
2022-07-12 02:08:15 +02:00
tokio = { version = "1.13.1", features = ["rt", "macros", "sync", "time"] }