moq_proto/lib.rs
1//! An fork of the MoQ Transport protocol.
2//!
3//! MoQ Transfork is a pub/sub protocol over QUIC.
4//! While originally designed for live media, MoQ Transfork is generic and can be used for other live applications.
5//! The specification is a work in progress and will change.
6//! See the [specification](https://datatracker.ietf.org/doc/draft-lcurley-moq-transfork/) and [github](https://github.com/kixelated/moq-drafts) for any updates.
7//!
8//! This crate contains any runtime agnostic components.
9//! It's currently super simple but will be expanded as Tokio becomes more of a hindrence.
10//!
11pub mod coding;
12pub mod message;