//! The single source of version truth for the whole workspace.
//!
//! The TypeScript build suffered a three-way drift: `index.ts`'s
//! `VERSION = "0.1.0"`, `package.json`'s `"0.13.1"`, and `resolveVersion()`'s
//! filesystem-walk fallback `"0.0.0"` could all disagree. Cargo eliminates that:
//! `[workspace.package] version` flows into `CARGO_PKG_VERSION`, and every crate
//! reads the same compile-time constant. There is no runtime resolution and no
//! fallback to drift away from.
//!
//! Grep gate: no string-literal version constants may live anywhere outside the
//! workspace `Cargo.toml`; everything reads [`VERSION`].
/// The framework version, single-sourced from `[workspace.package] version`.
pub const VERSION: &str = env!;