1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#![deny(warnings, missing_docs, unsafe_code, nonstandard_style)]
mod cli;
mod context;
pub mod dictionary;
mod format;
mod packer;
pub use cli::Cli;
pub use context::Context;
pub use format::DictionaryFormat;
pub use format::ImageFormat;
pub use packer::Packer;
pub type Size = euclid::Size2D<u32, u32>;
pub type Point = euclid::Point2D<u32, u32>;
pub type Rect = euclid::Rect<u32, u32>;
pub type Color = image::Rgba<u8>;