roughenough_protocol/
lib.rs

1// The protocol crate uses only safe Rust.
2#![forbid(unsafe_code)]
3
4pub mod cursor;
5pub mod error;
6pub mod header;
7pub mod request;
8pub mod response;
9pub mod tag;
10pub mod tags;
11pub mod util;
12pub mod wire;
13
14// Re-export commonly used types
15pub use wire::{FromFrame, FromWire, FromWireN, ToFrame, ToWire};