blob: 9d996a09c43d432067b6457fc05c8703fc067ec4 [file] [log] [blame]
extern crate chrono;
pub fn main() {
let now = chrono::Utc::now();
println!(
"cargo:rustc-env=VERGEN_BUILD_TIMESTAMP={}",
now.to_rfc3339()
);
}