UPDATE: Dump of initial files

This commit is contained in:
Nicolás Hatcher
2023-11-18 21:26:18 +01:00
commit c5b8efd83d
279 changed files with 42654 additions and 0 deletions

32
base/src/lib.rs Normal file
View File

@@ -0,0 +1,32 @@
#![deny(clippy::unwrap_used)]
pub mod calc_result;
pub mod cell;
pub mod expressions;
pub mod formatter;
pub mod language;
pub mod locale;
pub mod model;
pub mod new_empty;
pub mod number_format;
pub mod types;
pub mod worksheet;
mod functions;
mod actions;
mod cast;
mod constants;
mod styles;
mod diffs;
mod implicit_intersection;
mod units;
mod utils;
mod workbook;
#[cfg(test)]
mod test;
#[cfg(test)]
pub mod mock_time;