static VERSION: LazyLock<Version, fn() -> Version>
Expand description
Internal static reference to the parsed current version.
Remark: I considered making this a const
instead of static
, but then we’d have to either
somehow do the const parsing ourselves, or hardcode it in a Version::new
call and risk having it
out of date with Cargo’s version.