neser 0.3.1

NESER - NES Emulator in Rust. Desktop (SDL) and WebAssembly frontends.
Documentation
#[allow(unused_imports)] // Used by autorun features
pub use types::{
    AUTORUN_VERSION, AutorunCheckpoint, AutorunFile, AutorunFormat, AutorunFrame, AutorunMode,
    CHECKPOINT_INTERVAL_FRAMES, StateConverter,
};
#[allow(unused_imports)]
pub(crate) use utils::{
    AutorunFileV2, AutorunFileV3OnDisk, AutorunFileV3Ser, AutorunRleFrame, decode_rle_frames,
    encode_rle_frames,
};
#[allow(unused_imports)]
pub use utils::{
    BINARY_MAGIC, autorun_path_for_rom, backup_autorun_file, convert_autorun_file, crc32,
    load_autorun_file, save_autorun_file, trim_recording,
};
#[cfg(feature = "native")]
pub mod state;

mod types;
mod utils;