xlsxzero 0.1.0

Pure-Rust Excel parser and Markdown converter for RAG systems
Documentation
1
2
3
4
5
6
7
8
9
10
//! Parser Module
//!
//! calamineを使用したExcelファイル解析の基礎実装。
//! ストリーミング処理により、メモリ効率的にセルデータを抽出します。

mod metadata;
mod workbook;

pub(crate) use metadata::XlsxMetadataParser;
pub(crate) use workbook::WorkbookParser;