1 2 3 4 5 6 7 8
const VERSION: &'static str = env!("CARGO_PKG_VERSION"); static INIT: &str = t(); const fn t() -> &'static str { register(); return VERSION; } const fn register() {}