tide_websockets/
lib.rs

1//! it's websockets, for tide!
2//!
3//! see [`WebSocket`] for examples and usage
4
5#![forbid(unsafe_code, future_incompatible)]
6#![deny(
7    missing_debug_implementations,
8    nonstandard_style,
9    missing_docs,
10    unreachable_pub,
11    missing_copy_implementations,
12    unused_qualifications
13)]
14
15mod handler;
16mod websocket_connection;
17
18pub use handler::WebSocket;
19pub use websocket_connection::WebSocketConnection;
20
21pub use async_tungstenite;
22pub use async_tungstenite::tungstenite::{self, Error, Message};