office-rs 0.1.1

A Rust library for reading and writing XML Office files
Documentation
pub mod cell;
pub mod formulas;
pub mod reader;
pub mod styles;
pub mod workbook;
pub mod worksheet;
pub mod writer;

// 重新导出核心类型
pub use cell::{ Cell, CellFormat, CellReference, CellType, CellValue };
pub use formulas::{
    BinaryOperator,
    CellProvider,
    FormulaCacheManager,
    FormulaCalculator,
    FormulaError,
    FormulaExpression,
    FormulaManager,
    FormulaParser,
    FormulaProfiler,
    FormulaValue,
    UnaryOperator,
    parse_formula,
};
pub use reader::XlsxReader;
pub use workbook::{ Workbook, WorkbookProperties };
pub use worksheet::{ Worksheet, WorksheetDimension, WorksheetProperties };
pub use writer::XlsxWriter;