rs-chunks 0.1.0

Fast, high-fidelity document chunking for RAG — a pure-Rust engine covering 36 file formats (Office, OpenDocument, PDF, email, ebooks, notebooks, and more).
//! Per-format chunking engines. Each format exposes native `chunk` /
//! `chunk_with_options` / `stream` / `to_markdown` entry points.

pub(crate) mod odraw;
pub(crate) mod pipeline;

pub mod csv;
pub mod doc;
pub mod docx;
pub mod eml;
pub mod epub;
pub mod html;
pub mod ipynb;
pub mod json;
pub mod md;
pub mod msg;
pub mod odf;
pub mod pdf;
pub mod ppt;
pub mod pptx;
pub mod rtf;
pub mod txt;
pub mod xlsx;