internet 0.1.0

Network library for rust
Documentation
//! # IPv6: Internet Protocol Version 6
//!
//! Routes packets in IPv6 networks.
//!
//! ## Status
//!
//! **In Development** — Codec and mapping API mostly complete.
//! Communication layer pending. Breaking changes possible until stable.
//!
//! ## References
//!
//! - Base specification: [RFC 8200](https://datatracker.ietf.org/doc/html/rfc8200)
//! - IPv6 Address: [RFC 4291](https://datatracker.ietf.org/doc/html/rfc4291)

mod encoding;
pub use encoding::*;

mod mapping;
pub use mapping::*;