moq_lite/lib.rs
1//! # moq-lite (deprecated)
2//!
3//! This crate has been renamed to [`moq-net`](https://crates.io/crates/moq-net) to clarify
4//! that it is the networking layer for Media over QUIC. Under the hood it negotiates one
5//! of two wire protocols at session setup: the simplified `moq-lite` protocol or the full
6//! IETF `moq-transport` protocol.
7//!
8//! `moq-lite` now re-exports `moq-net` so existing code keeps building. It will not
9//! receive future updates. Migrate by replacing the dependency and changing `moq_lite::`
10//! to `moq_net::`.
11
12pub use moq_net::*;