orengine 0.7.0-alpha.1

Optimized ring engine for Rust. It is a lighter and faster asynchronous library than tokio-rs, async-std, may, and even smol.
Documentation
//! The io/net module provides a comprehensive set of asynchronous traits and utilities for working
//! with network sockets.
//!
//! These abstractions facilitate the creation and management
//! of TCP and UDP connections, along with supporting operations like connecting, accepting,
//! sending, receiving, binding, and shutting down sockets.
pub mod accept;
pub mod bind;
pub mod connect;
pub mod peek;
pub mod peek_from;
pub mod poll_fd;
pub mod recv;
pub mod recv_from;
pub mod send;
pub mod send_to;
pub mod shutdown;
pub mod socket;

pub use accept::*;
pub use bind::*;
pub use connect::*;
pub use peek::*;
pub use peek_from::*;
pub use poll_fd::*;
pub use recv::*;
pub use recv_from::*;
pub use send::*;
pub use send_to::*;
pub use shutdown::*;
pub use socket::*;