oxidize-pdf 2.9.0

Pure Rust PDF library for AI/RAG: structure-aware chunking with bounding boxes, heading context, and token estimates. No Python, no ML, no C bindings.
Documentation
//! Debug example to test tesseract compilation

#[cfg(feature = "ocr-tesseract")]
fn main() {
    println!("Testing rusty-tesseract dependency...");

    // Try to use rusty-tesseract
    use rusty_tesseract::Args;

    println!("Creating test args...");
    let args = Args::default();
    println!("Args created: {:?}", args);

    println!("rusty-tesseract dependency works!");
}

#[cfg(not(feature = "ocr-tesseract"))]
fn main() {
    println!("OCR feature not enabled. Use --features ocr-tesseract");
}