moq-net 0.1.2

The networking layer for Media over QUIC: real-time pub/sub with built-in caching, fan-out, and prioritization.
Documentation
//! Contains encoding and decoding helpers.

mod decode;
mod encode;
mod reader;
mod size;
mod stream;
mod varint;
mod version;
mod writer;

pub use decode::*;
pub use encode::*;
pub use reader::*;
pub use size::*;
pub use stream::*;
pub use varint::*;
pub use version::*;
pub use writer::*;