usestd::sync::LazyLock;/// User-facing version string. Appends `-DEBUG` on non-release builds so
/// a stray `cargo run` binary on `$PATH` is obvious in `aube --version`
/// and the install progress header.
pubstaticVERSION:LazyLock<String>=LazyLock::new(||{letmut v =env!("CARGO_PKG_VERSION").to_string();ifcfg!(debug_assertions){
v.push_str("-DEBUG");}
v
});