1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/websockets/echo-actorless/Cargo.toml

16 lines
360 B
TOML
Raw Normal View History

2022-07-11 02:44:46 +02:00
[package]
name = "websocket-echo-actorless-example"
version = "1.0.0"
edition = "2021"
[dependencies]
actix-files = "0.6"
actix-web = "4"
actix-ws = "0.2.5"
awc = "3"
env_logger = "0.9"
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"] }