office_oxide 0.1.1

The fastest Office document processing library — DOCX, XLSX, PPTX, DOC, XLS, PPT
Documentation
//! Pure Rust reader for legacy Excel Binary (.xls) BIFF8 files.
//!
//! # Example
//!
//! ```no_run
//! use office_oxide::xls::XlsDocument;
//!
//! let doc = XlsDocument::open("spreadsheet.xls").unwrap();
//! println!("{}", doc.plain_text());
//! ```

mod cell;
mod error;
pub mod images;
mod records;
mod sst;
mod workbook;

pub use crate::core::OfficeDocument;
pub use cell::{Cell, CellValue};
pub use error::{Result, XlsError};
pub use images::{ImageFormat, XlsImage};
pub use workbook::{Sheet, XlsDocument};