//! This module contains a parser for the .aseprite file specification in
//! version 1.3 as described in the `aseprite/aseprite` repository on GitHub:
//! <https://github.com/aseprite/aseprite/blob/main/docs/ase-file-specs.md>
#![allow(missing_docs)]
pub mod blend_mode;
pub mod chunk;
pub mod chunk_type;
pub mod chunks;
pub mod color_depth;
pub mod errors;
pub mod file;
pub mod frame;
pub mod header;
pub mod image;
pub mod palette;
pub mod raw_file;
pub mod raw_frame;
pub mod scalars;