1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/websockets/chat-actorless/Cargo.toml

18 lines
396 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 = "0.6"
actix-web = "4"
actix-ws = "0.2.5"
awc = "3"
derive_more = "0.99.5"
env_logger = "0.9"
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"] }