Skip to main content

fastpack_core/
lib.rs

1//! Core sprite packing library for FastPack.
2//!
3//! Handles image loading, trimming, extrusion, alias detection, and rectangle
4//! bin-packing. All engine-agnostic logic lives here. The CLI and GUI frontends
5//! depend on this crate but never the reverse.
6
7#![allow(dead_code, unused_imports, unused_variables, unused_mut)]
8
9pub mod algorithms;
10pub mod error;
11pub mod imaging;
12pub mod multipack;
13pub mod types;