Skip to main content

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_write;
25pub mod render;
26pub mod rich_text;
27pub mod row;
28pub mod shape;
29pub mod sheet;
30pub mod slicer;
31pub mod sparkline;
32pub mod sst;
33pub mod stream;
34pub mod style;
35pub mod table;
36pub mod theme;
37pub mod threaded_comment;
38pub mod utils;
39pub mod validation;
40pub mod vba;
41pub mod vml;
42pub mod workbook;
43pub(crate) mod workbook_paths;