mcproto_codec/lib.rs
1//! mcproto-codec
2//!
3//! This crate provides a codec for the Minecraft protocol, including support for reading and writing various data types used in the protocol, such as VarInt, VarLong, and other primitive types.
4//! It also includes error handling and context management for encoding and decoding operations.
5pub mod error;
6pub mod io;
7pub mod varint;
8pub mod varlong;