dope 0.2.2

Thin io_uring adaptor with "Manifolds"
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use dambi;
pub use dope_core as core;
pub use dope_futures as futures;
pub use dope_runtime as runtime;
pub use dope_session as session;
pub use dope_transport as transport;
pub use dope_udp as udp;

pub use dope_runtime::{
    DefaultBackend, Driver, ExternalDispatch, JoinHandle, RuntimeCtx, block_on, current,
    install_external, sleep, spawn, timeout,
};

pub type Stream<T> = dope_futures::Stream<T, DefaultBackend>;
pub type Listener<T> = dope_futures::Listener<T, DefaultBackend>;
pub type Conn<T> = dope_futures::Conn<T, DefaultBackend>;
pub type RecvChunk = dope_futures::RecvChunk<DefaultBackend>;
pub type UdpSocket = dope_udp::udp_socket::UdpSocket<DefaultBackend>;