rust-ipfs/vendor/vergen/build.rs
Vladislav Tsarev 3dec7eeb01 Initial commit
2024-10-18 11:36:33 +03:00

10 lines
173 B
Rust

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