sheetkit_xml/lib.rs
1//! sheetkit-xml: Low-level XML parsing and serialization for Office Open XML formats.
2//!
3//! This crate provides Rust structures for OOXML Excel file XML schemas,
4//! with serde-based serialization and deserialization via quick-xml.
5//!
6//! # Modules
7//!
8//! - [`namespaces`] - OOXML namespace URI constants
9//! - [`content_types`] - `[Content_Types].xml` structures
10//! - [`relationships`] - Relationships (`.rels`) structures
11//! - [`workbook`] - `xl/workbook.xml` structures
12//! - [`worksheet`] - `xl/worksheets/sheet*.xml` structures
13//! - [`styles`] - `xl/styles.xml` structures
14//! - [`shared_strings`] - `xl/sharedStrings.xml` structures
15
16pub mod chart;
17pub mod comments;
18pub mod content_types;
19pub mod doc_props;
20pub mod drawing;
21pub mod namespaces;
22pub mod pivot_cache;
23pub mod pivot_table;
24pub mod relationships;
25pub mod shared_strings;
26pub mod slicer;
27pub mod sparkline;
28pub mod styles;
29pub mod table;
30pub mod theme;
31pub mod threaded_comment;
32pub mod workbook;
33pub mod worksheet;