1#![cfg_attr(target_os = "emscripten", feature(let_chains, unsigned_is_multiple_of))]
2
3pub mod args;
4pub mod broadcast;
5pub mod coercion;
6pub mod error_policy;
7pub mod formula_plane;
8pub mod function;
9pub mod function_contract;
10pub mod function_registry;
11pub mod instant;
12pub mod interpreter;
13pub mod locale;
14pub mod rng;
15pub mod stripes;
16pub mod timezone;
17pub mod traits;
18
19pub mod builtins;
20pub mod reference;
21
22pub use reference::CellRef;
23pub use reference::Coord;
24pub use reference::RangeRef;
25pub use reference::SheetId;
26
27mod macros;
28#[cfg(test)]
29pub mod test_utils;
30#[cfg(any(test, feature = "test-support"))]
31#[doc(hidden)]
32pub mod test_workbook;
33
34pub mod engine;
35pub mod planner;
36pub mod telemetry;
37
38pub mod arrow_store;
40pub mod compute_prelude;
42
43#[cfg(test)]
44mod tests;