xlsxparser 0.10.2

A lightweight, high-performance .xlsx (OOXML) parser library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Pure domain data structures (`Cell`, `Sheet`, `Workbook`, ...). No
//! dependency on XML parsing or resolution logic — see
//! `docs/design/architecture.en.md`.

mod cell;
mod sheet;
mod style;
mod workbook;

pub use cell::{Cell, CellRef, CellValue, DateTimeValue};
pub use sheet::{MergedRegion, Sheet, SheetVisibility};
pub use style::{ResolvedStyle, StyleId, StyleSheet};
pub use workbook::Workbook;