
formualizer-common
formualizer-common hosts the shared data structures that keep the Formualizer
spreadsheet engine cohesive across crates and language bindings. Types in this
crate represent literal values, ranges, function signatures, and diagnostic
errors that travel between the parser, evaluator, workbook, and external
surfaces.
Note: This crate is a versioned SDK dependency shared across Formualizer crates and is also available to downstream integrations. Public API changes follow semantic versioning. Prefer a higher-level
formualizer-*crate when you do not need the shared value, reference, or diagnostic types directly.
Highlights
- Canonical value model –
LiteralValueand related helpers cover Excel scalars, arrays, dates/times, and error variants with round-trippable conversions. - Range plumbing – strongly-typed range and reference utilities used by the parser and evaluator to agree on addresses.
- Function metadata – descriptors and enums that describe built-in functions, their argument shapes, and capability flags.
- Error surface – consistent
ExcelErrorand evaluation diagnostics shared across Rust, Python, and WASM bindings.
When to use it
Most users interact with higher-level crates such as formualizer-parse,
formualizer-eval, or formualizer-workbook. Depend on formualizer-common
directly if you need the shared types in a standalone integration or when
building a new Formualizer dialect/binding.
use ;
License
Dual-licensed under MIT or Apache-2.0, at your option.
See the main project README for contributor guidelines and release steps.