mirror of https://github.com/rwf2/Rocket.git
New version: rocket_ws 0.1.1.
This commit is contained in:
parent
92eb043733
commit
34321b418f
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rocket_ws"
|
name = "rocket_ws"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
||||||
description = "WebSocket support for Rocket."
|
description = "WebSocket support for Rocket."
|
||||||
documentation = "https://api.rocket.rs/v0.5/rocket_ws/"
|
documentation = "https://api.rocket.rs/v0.5/rocket_ws/"
|
||||||
|
|
|
@ -16,7 +16,7 @@ This crate provides WebSocket support for Rocket via integration with Rocket's
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ws = { package = "rocket_ws", version = "0.1.0" }
|
ws = { package = "rocket_ws", version = "0.1.1" }
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Use it!
|
2. Use it!
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies]
|
//! [dependencies]
|
||||||
//! ws = { package = "rocket_ws", version = "0.1.0" }
|
//! ws = { package = "rocket_ws", version = "0.1.1" }
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! Then, use [`WebSocket`] as a request guard in any route and either call
|
//! Then, use [`WebSocket`] as a request guard in any route and either call
|
||||||
|
|
Loading…
Reference in New Issue