safer-ring 0.0.1

A safe Rust wrapper around io_uring with zero-cost abstractions and compile-time memory safety guarantees
Documentation
1
2
3
4
5
6
7
8
9
//! Echo server modules for safer-ring demonstration.

pub mod client;
pub mod config;
pub mod stats;

// Do not re-export handle_client here to avoid conflicts.
pub use config::ServerConfig;
pub use stats::ServerStats;