[package]
edition = "2021"
rust-version = "1.88.0"
name = "rkt_ws"
version = "1.1.0"
authors = ["Sergio Benitez <sb@sergio.bz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WebSocket support for rkt."
homepage = "https://rkt.rs"
documentation = "https://docs.rs/rkt_ws/latest/rkt_ws/"
readme = "README.md"
keywords = [
"rkt",
"rocket",
"web",
"framework",
"websocket",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustfoo/rkt"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["tungstenite"]
tungstenite = ["tokio-tungstenite"]
[lib]
name = "rkt_ws"
path = "src/lib.rs"
[dependencies.rkt]
version = "1.1.0"
default-features = false
[dependencies.tokio-tungstenite]
version = "0.29"
optional = true
[lints.clippy]
manual_range_contains = "allow"
module_inception = "allow"
multiple_bound_locations = "allow"
needless_borrow = "allow"
result_large_err = "allow"
type_complexity = "allow"
[lints.rust]
async_fn_in_trait = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(nightly)"]