extern crate wee_alloc;
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
#[cfg(feature = "crc")]
pub mod crc;
#[cfg(feature = "crc")]
mod crc_table;
#[cfg(feature = "jenkins")]
pub mod jenkins;
pub mod lib_utils;
#[cfg(feature = "rc4")]
pub mod rc4;
#[cfg(feature = "soeprotocol")]
pub mod soeprotocol;
#[cfg(feature = "soeprotocol")]
pub mod soeprotocol_functions;
#[cfg(feature = "soeprotocol")]
pub mod soeprotocol_packets_structs;
#[cfg(feature = "game-utils")]
pub mod utils;