oxidize-pdf 2.5.1

A pure Rust PDF generation and manipulation library with zero external dependencies
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");
}