mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-03 07:12:01 +00:00
bd482081ad
This is an initial example that showcases using the new connection upgrade API to implement WebSocket support outside of Rocket's core.
11 lines
176 B
TOML
11 lines
176 B
TOML
[package]
|
|
name = "upgrade"
|
|
version = "0.0.0"
|
|
workspace = "../"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib" }
|
|
tokio-tungstenite = "0.18"
|