2023-11-03 23:49:18 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-ws"
|
2024-07-20 08:24:20 +02:00
|
|
|
version = "0.3.0"
|
2023-11-03 23:49:18 +01:00
|
|
|
description = "WebSockets for Actix Web, without actors"
|
|
|
|
categories = ["web-programming::websocket"]
|
2024-07-20 08:24:20 +02:00
|
|
|
keywords = ["actix", "web", "websocket", "websockets", "streaming"]
|
2023-11-03 23:49:18 +01:00
|
|
|
authors = [
|
|
|
|
"asonix <asonix@asonix.dog>",
|
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
|
|
]
|
2024-06-20 03:18:37 +02:00
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2023-11-03 23:49:18 +01:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-codec = "0.5"
|
|
|
|
actix-http = { version = "3", default-features = false, features = ["ws"] }
|
|
|
|
actix-web = { version = "4", default-features = false }
|
|
|
|
bytestring = "1"
|
|
|
|
futures-core = "0.3.17"
|
|
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-06-20 02:37:37 +02:00
|
|
|
actix-web = "4.8"
|
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2023-11-03 23:49:18 +01:00
|
|
|
pretty_env_logger = "0.5"
|
2024-06-20 02:55:14 +02:00
|
|
|
tokio = { version = "1", features = ["sync", "rt", "macros"] }
|
|
|
|
tracing = "0.1.30"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2024-06-20 03:14:35 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|