aseprite_loader/binary/
mod.rs

1//! This module contains a parser for the .aseprite file specification in
2//! version 1.3 as described in the `aseprite/aseprite` repository on GitHub:
3//! <https://github.com/aseprite/aseprite/blob/main/docs/ase-file-specs.md>
4#![allow(missing_docs)]
5
6pub mod blend_mode;
7pub mod chunk;
8pub mod chunk_type;
9pub mod chunks;
10pub mod color_depth;
11pub mod errors;
12pub mod file;
13pub mod frame;
14pub mod header;
15pub mod image;
16pub mod palette;
17pub mod raw_file;
18pub mod raw_frame;
19pub mod scalars;