1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! 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;