litchi 0.0.1

High-performance parser for Microsoft Office, OpenDocument, and Apple iWork file formats with unified API
Documentation
//! Legacy Excel (.xls) file format reader
//!
//! This module provides functionality to parse Microsoft Excel files
//! in the legacy binary format (.xls files), which are OLE2-based files.
//! The implementation is based on the BIFF (Binary Interchange File Format)
//! specification and draws inspiration from xlrd and calamine libraries.

/// Error types for XLS parsing
mod error;

/// BIFF record parsing utilities
mod records;

/// Workbook parsing implementation
mod workbook;

/// Worksheet parsing implementation
mod worksheet;

/// Cell value parsing and representation
mod cell;

/// Shared parsing utilities
mod utils;

pub use error::{XlsError, XlsResult};
pub use workbook::XlsWorkbook;
pub use worksheet::XlsWorksheet;
pub use cell::XlsCell;