//! CatPrinter library: print text and images to CatPrinter devices via BLE.
//!
//! Main modules:
//! - ble: BLE transport and async printer
//! - dithering: image dithering algorithms
//! - font: text rasterization
//! - printer: sync printer
//! - protocol: packet and data utilities
/// BLE API: scan/connect to printers, async printing
pub use ;
/// Sync printer API
pub use *;
/// Protocol utilities (packets, pixel packing, etc)
pub use *;