h1emu-core 0.9.1

Utility library used in h1emu.
Documentation
extern crate wee_alloc;

// Use `wee_alloc` as the global allocator.
#[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;