boltr 0.2.0

Pure-Rust Bolt v5.x wire protocol library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WebSocket transport for Bolt connections.
//!
//! This module provides WebSocket support for both server and client
//! components, allowing Bolt protocol messages to be exchanged over
//! `ws://` and `wss://` connections.
//!
//! Enable with the `ws` feature flag in `Cargo.toml`.

mod stream;

pub mod server;

pub use stream::WsStream;