1 diff --git a/build.rs b/build.rs
2 index 0f66ace..be74fad 100644
5 @@ -99,24 +99,5 @@ fn main() -> Result<()> {
10 - let output = Command::new("git")
11 - .args(["describe", "--tags", "--abbrev=0"])
14 - let git_tag = String::from_utf8(output.stdout).unwrap();
15 - println!("cargo:rustc-env=GIT_VERSION={git_tag}");
17 - let output = Command::new("git")
18 - .args(["rev-parse", "HEAD"])
21 - let git_commit = String::from_utf8(output.stdout).unwrap();
22 - println!("cargo:rustc-env=GIT_COMMIT_HASH={git_commit}");
24 - let now: DateTime<Utc> = Utc::now();
25 - let build_date = now.to_rfc3339_opts(SecondsFormat::Secs, true);
26 - println!("cargo:rustc-env=GIT_BUILD_DATE={build_date}");