sheetkit_core/
lib.rs

1//! sheetkit-core: Core spreadsheet engine -- reading, writing, and manipulating workbooks.
2
3pub mod cell;
4pub(crate) mod cell_ref_shift;
5pub mod chart;
6pub mod col;
7pub mod comment;
8pub mod conditional;
9pub mod control;
10#[cfg(feature = "encryption")]
11pub mod crypt;
12pub mod defined_names;
13pub mod doc_props;
14pub mod error;
15pub mod formula;
16pub mod hyperlink;
17pub mod image;
18pub mod merge;
19pub mod numfmt;
20pub mod page_layout;
21pub mod pivot;
22pub mod protection;
23pub mod raw_transfer;
24pub mod raw_transfer_v2;
25pub mod raw_transfer_write;
26pub mod render;
27pub mod rich_text;
28pub mod row;
29pub mod shape;
30pub mod sheet;
31pub mod slicer;
32pub mod sparkline;
33pub mod sst;
34pub mod stream;
35pub mod stream_reader;
36pub mod style;
37pub mod table;
38pub mod theme;
39pub mod threaded_comment;
40pub mod utils;
41pub mod validation;
42pub mod vba;
43pub mod vml;
44pub mod workbook;
45pub(crate) mod workbook_paths;