cflx 0.5.6

Conflux – a spec-driven parallel coding orchestrator that runs AI agents on git worktrees
1
2
3
4
5
6
7
8
9
10
11
12
use chrono::Utc;

fn main() {
    // Generate UTC build number in YYYYMMDDHHmmss format
    let build_time = Utc::now();
    let build_number = build_time.format("%Y%m%d%H%M%S").to_string();

    println!("cargo:rustc-env=BUILD_NUMBER={}", build_number);

    // Re-run if build script changes
    println!("cargo:rerun-if-changed=build.rs");
}