basalt-mc-protocol 0.2.1

Minecraft packet definitions and version-aware packet registry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Minecraft packet definitions organized by connection state.
//!
//! Each submodule contains the packet structs for one connection state,
//! along with direction-specific enums (serverbound/clientbound) that
//! enable exhaustive pattern matching on received packets.
//!
//! Auto-generated by `cargo xt codegen`. Do not edit manually.

pub mod configuration;
pub mod handshake;
pub mod login;
pub mod play;
pub mod status;