[package]
edition = "2021"
rust-version = "1.80"
name = "openwire-fastwebsockets"
version = "0.1.1"
authors = ["OpenWire contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "fastwebsockets engine adapter for OpenWire WebSocket clients"
readme = "README.md"
keywords = [
"http",
"client",
"async",
"hyper",
"okhttp",
]
categories = [
"asynchronous",
"network-programming",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/peterich-rs/openwire"
[lib]
name = "openwire_fastwebsockets"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.bytes]
version = "1.10.1"
[dependencies.fastwebsockets]
version = "0.10"
features = ["unstable-split"]
[dependencies.futures-util]
version = "0.3.31"
features = ["sink"]
[dependencies.openwire-core]
version = "0.1.1"
features = ["websocket"]
[dependencies.openwire-tokio]
version = "0.1.1"
[dependencies.tokio]
version = "1.48.0"
features = ["full"]
[dev-dependencies.http]
version = "1.3.1"
[dev-dependencies.openwire]
version = "0.1.1"
features = ["websocket"]
[dev-dependencies.tokio]
version = "1.48.0"
features = [
"full",
"rt-multi-thread",
"macros",
]
[dev-dependencies.tokio-tungstenite]
version = "0.24"