vergen 3.2.0

Generate version related functions
Documentation
1
2
3
4
5
6
7
8
9
extern crate chrono;

pub fn main() {
    let now = chrono::Utc::now();
    println!(
        "cargo:rustc-env=VERGEN_BUILD_TIMESTAMP={}",
        now.to_rfc3339()
    );
}