2023-04-01 22:02:24 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket_ws"
|
2023-11-03 23:26:07 +00:00
|
|
|
version = "0.1.0"
|
2023-04-01 22:02:24 +00:00
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
description = "WebSocket support for Rocket."
|
2023-11-18 10:30:50 +00:00
|
|
|
documentation = "https://api.rocket.rs/master/rocket_ws/"
|
2023-04-01 22:02:24 +00:00
|
|
|
homepage = "https://rocket.rs"
|
2023-11-21 15:29:44 +00:00
|
|
|
repository = "https://github.com/rwf2/Rocket/tree/master/contrib/ws"
|
2023-04-01 22:02:24 +00:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["rocket", "web", "framework", "websocket"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
edition = "2021"
|
2024-01-30 17:18:40 +00:00
|
|
|
rust-version = "1.75"
|
2023-04-01 22:02:24 +00:00
|
|
|
|
2024-05-20 18:39:14 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-04-01 22:02:24 +00:00
|
|
|
[features]
|
|
|
|
default = ["tungstenite"]
|
|
|
|
tungstenite = ["tokio-tungstenite"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-16 00:58:00 +00:00
|
|
|
tokio-tungstenite = { version = "0.21", optional = true }
|
2023-04-01 22:02:24 +00:00
|
|
|
|
|
|
|
[dependencies.rocket]
|
2023-11-18 10:30:50 +00:00
|
|
|
version = "0.6.0-dev"
|
2023-04-01 22:02:24 +00:00
|
|
|
path = "../../core/lib"
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|