minibeads 0.19.0

A minimal, markdown-based drop-in replacement for the beads issue tracker
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    // Set build date
    let now = chrono::Utc::now();
    println!(
        "cargo:rustc-env=BUILD_DATE={}",
        now.format("%Y-%m-%d %H:%M:%S UTC")
    );

    // Generate build-time information (git hash, etc.)
    built::write_built_file().expect("Failed to acquire build-time information");
}