orbok-app 0.9.11

orbok application binary: backend bootstrap and GUI launch
1
2
3
4
5
6
7
8
9
10
//! Build script: embed version and build metadata (RFC-017 ยง14).
fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    println!("cargo:rustc-env=ORBOK_BUILD_DATE={}", chrono_or_static());
}

fn chrono_or_static() -> &'static str {
    // Use a static date; a real build would use chrono or `time`.
    "2026-06-07"
}