Skip to main content

VERSION

Constant VERSION 

Source
pub const VERSION: &str = "0.9.0";
Expand description

Crate version string, populated by Cargo at build time.

Matches the version field in Cargo.toml exactly. Useful for diagnostics, telemetry, and --version output in tools that embed arena-lib.

ยงExamples

use arena_lib::VERSION;

assert!(!VERSION.is_empty());
assert!(VERSION.chars().next().is_some_and(|c| c.is_ascii_digit()));