zrquic 0.1.6

A low-level quic library based on `quiche` focusing on non-blocking and masive connection management.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Poll api for masive [`quiche::Connection`].
#![cfg_attr(docsrs, feature(doc_cfg))]

pub mod poll;
pub use quiche;

#[cfg(feature = "mio")]
#[cfg_attr(docsrs, doc(cfg(feature = "mio")))]
pub mod mio;

#[cfg(feature = "futures")]
#[cfg_attr(docsrs, doc(cfg(feature = "futures")))]
pub mod futures;