sib 0.0.11

A high-performance, secure, and cross-platform modules optimized for efficiency, scalability, and reliability.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use chrono::{Datelike, Timelike, Utc};

fn main() {
    let now = Utc::now();
    let version = format!(
        "v{:04}.{:02}.{:02}.{:02}{:02}{:02}",
        now.year(),
        now.month(),
        now.day(),
        now.hour(),
        now.minute(),
        now.second()
    );
    println!("cargo:rustc-env=SIB_BUILD_VERSION={version}");
}