boltr 0.2.0

Pure-Rust Bolt v5.x wire protocol library
Documentation
1
2
3
4
5
6
7
//! Bolt message chunking: 2-byte length-prefixed framing over TCP.

pub mod reader;
pub mod writer;

pub use reader::ChunkReader;
pub use writer::ChunkWriter;