blaze_pk/
lib.rs

1//! Rust library for working with the Blaze packet system this is the networking solution used by games such as
2//! Mass Effect 3, Battlefield 3, another Other EA games.
3
4pub mod codec;
5pub mod error;
6pub mod packet;
7pub mod reader;
8pub mod router;
9pub mod tag;
10pub mod types;
11pub mod writer;
12
13/// Serde serialization
14#[cfg(feature = "serde")]
15pub mod serialize;
16
17/// Re-exports for derive macros
18pub use blaze_pk_derive::{PacketComponent, PacketComponents};