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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use bind_config::{BindConfig, ReusePort};
pub use connected_datagram::ConnectedDatagram;
pub use datagram::Datagram;
pub use listener::Listener;
pub use socket::Socket;
pub use stream::Stream;
pub use tcp::{TcpListener, TcpStream};
pub use udp::{UdpConnectedSocket, UdpSocket};

pub mod bind_config;
pub mod connected_datagram;
pub(crate) mod creators_of_sockets;
pub mod datagram;
pub mod listener;
pub mod socket;
pub mod stream;
pub mod tcp;
pub mod udp;