New version: rocket_ws 0.1.1.

This commit is contained in:
Sergio Benitez 2024-05-22 20:38:53 -05:00
parent 92eb043733
commit 34321b418f
3 changed files with 3 additions and 3 deletions

View File

@ -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/"

View File

@ -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!

View File

@ -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