internet 0.1.0

Network library for rust
Documentation
//! # QUICv1: Quick UDP Internet Connections Version 1
//!
//! Encrypted multiplexed transport over UDP.
//!
//! ## Status
//!
//! **In Development** — Codec API mostly complete.
//! Mapping and communication layer pending. Breaking changes possible until stable.
//!
//! ## References
//!
//! - Base Specification: [RFC 9000](https://datatracker.ietf.org/doc/html/rfc9000)
//! - Packet protection using TLS 1.3: [RFC 9001](https://datatracker.ietf.org/doc/html/rfc9001)
//! - Loss detection and congestion control: [RFC 9002](https://datatracker.ietf.org/doc/html/rfc9002)

mod encoding;
pub use encoding::*;

// mod mapping;
// pub use mapping::*;