//! Captcha Engine - ONNX-based captcha recognition
//!
//! A standalone library for breaking text-based captchas using a pre-trained ONNX model.
//!
//! # Features
//!
//! - `download` (default): Enables async model download from `HuggingFace`
//! - `embed-model`: Embeds the model in the binary (~19MB larger, no network required)
//!
//! # Example
//!
//! ```ignore
//! use captcha_engine::CaptchaModel;
//!
//! // With embed-model feature:
//! let mut model = CaptchaModel::load_embedded()?;
//!
//! // Or load from file:
//! let mut model = CaptchaModel::load("path/to/captcha.rten")?;
//!
//! let image = image::open("captcha.png")?;
//! let text = model.predict(&image)?;
//! println!("Captcha text: {}", text);
//! ```
pub use ;
pub use CaptchaModel;
pub use Tokenizer;
pub use ensure_model_downloaded;