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 error;
12pub mod function;
13pub mod range;
14pub mod value;
15
16pub use address::*;
17pub use coord::*;
18pub use coord_hash::*;
19pub use error::*;
20pub use function::*;
21pub use range::*;
22pub use value::*;