1//! A Bin Packing algorithm implemented in Rust. 2//! 3//! This library is meant to assist in solving packing issues 4//! using the common heuristic "best fit, decreasing." 5//! 6 7mod packing; 8 9pub use packing::{Packing, Bin, Item};