voidmc-codec 0.1.0

Encode/decode primitives for the Minecraft network protocol used by VoidMC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod booleans;
pub mod containers;
pub mod fixed_length;
pub mod floats;
pub mod integers;
pub mod nbt;
pub mod uuid;
pub mod vari;
pub mod vari64;

pub use fixed_length::{
    decode_fixed_length_vec, decode_fixed_length_vec_u8, decode_remaining_vec_u8,
    encode_fixed_length_vec, encode_fixed_length_vec_u8, encode_remaining_vec_u8,
};
pub use vari::VarI32;
pub use vari64::VarI64;