initial commit

This commit is contained in:
rustmailer
2025-11-19 02:14:37 +08:00
commit 1a8f95117e
355 changed files with 54089 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
use std::{io::Result, process::Command};
fn main() -> Result<()> {
let output = Command::new("git")
.args(&["rev-parse", "--short", "HEAD"])
.output()
.expect("Failed to get git commit hash");
let git_hash = String::from_utf8(output.stdout)
.expect("Invalid UTF-8")
.trim()
.to_string();
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
Ok(())
}