mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
32 lines
857 B
TOML
32 lines
857 B
TOML
[package]
|
|
name = "actix-ws"
|
|
version = "0.2.0"
|
|
description = "WebSockets for Actix Web, without actors"
|
|
categories = ["web-programming::websocket"]
|
|
keywords = ["actix", "web", "websocket", "websockets", "http"]
|
|
authors = [
|
|
"asonix <asonix@asonix.dog>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
]
|
|
repository = "https://github.com/actix/actix-extras"
|
|
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]
|
|
actix-rt = "2.6"
|
|
actix-web = "4.0.1"
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.5"
|
|
tokio = { version = "1", features = ["sync"] }
|