Skip to main content

formualizer_common/
lib.rs

1#![cfg_attr(target_os = "emscripten", feature(let_chains))]
2// The Pyodide-matched Rust nightly predates let-chain stabilization, so this
3// crate intentionally keeps `if let ... { if cond { ... } }` nesting in a few
4// places. Allow clippy's collapse-suggestion globally rather than annotating
5// each site and risking drift.
6#![allow(clippy::collapsible_if)]
7
8pub mod address;
9pub mod coord;
10pub mod coord_hash;
11pub mod date_serial;
12pub mod error;
13pub mod function;
14pub mod grid_address;
15pub mod range;
16pub mod value;
17
18pub use address::*;
19pub use coord::*;
20pub use coord_hash::*;
21pub use date_serial::*;
22pub use error::*;
23pub use function::*;
24pub use grid_address::*;
25pub use range::*;
26pub use value::*;