aseprite_reader2/
lib.rs

1#![deny(
2    missing_docs,
3    non_camel_case_types,
4    non_snake_case,
5    path_statements,
6    trivial_casts,
7    trivial_numeric_casts,
8    unsafe_code,
9    unstable_features,
10    unused_allocation,
11    unused_import_braces,
12    unused_imports,
13    unused_must_use,
14    unused_mut,
15    while_true,
16    clippy::panic,
17    clippy::print_stdout,
18    clippy::todo,
19    //clippy::unwrap_used, // not yet in stable
20    clippy::wrong_pub_self_convention
21)]
22#![doc = include_str!("../README.MD")]
23
24/// Errors used in this crate
25pub mod error;
26
27/// Raw data types
28///
29/// These are used to then construct the main [`Aseprite`] type.
30pub mod raw;
31
32mod computed;
33
34pub use computed::*;