1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;