mise 2026.2.24

The front-end to your dev env
1
2
3
4
5
6
7
8
9
10
11
use chrono::{DateTime, FixedOffset};
use std::sync::LazyLock as Lazy;

pub mod built_info {
    include!(concat!(env!("OUT_DIR"), "/built.rs"));
}

pub static BUILD_TIME: Lazy<DateTime<FixedOffset>> =
    Lazy::new(|| DateTime::parse_from_rfc2822(built_info::BUILT_TIME_UTC).unwrap());

pub static TARGET: &str = built_info::TARGET;