feat: add telemetry subcrate
Some checks failed
Build Zenyx ⚡ / 🧪 Run Cargo Tests (pull_request) Failing after 4m55s
Build Zenyx ⚡ / 🏗️ Build aarch64-apple-darwin (pull_request) Has been skipped
Build Zenyx ⚡ / 🏗️ Build aarch64-pc-windows-msvc (pull_request) Has been skipped
Build Zenyx ⚡ / 🏗️ Build aarch64-unknown-linux-gnu (pull_request) Has been skipped
Build Zenyx ⚡ / 🏗️ Build x86_64-apple-darwin (pull_request) Has been skipped
Build Zenyx ⚡ / 🏗️ Build x86_64-pc-windows-msvc (pull_request) Has been skipped
Build Zenyx ⚡ / 🏗️ Build x86_64-unknown-linux-gnu (pull_request) Has been skipped

This commit is contained in:
D0RYU 2025-04-26 11:52:46 -04:00
parent 2d704652b5
commit 91c80d0f91
9 changed files with 2085 additions and 69 deletions

View file

@ -0,0 +1,33 @@
use std::{env, fs::File, io::Write, process::Command};
fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let mut f = File::create(format!("{}/built.rs", out_dir)).unwrap();
let commit_hash = Command::new("git")
.args(["rev-parse", "HEAD"])
.output()
.ok()
.and_then(|o| String::from_utf8(o.stdout).ok())
.unwrap_or_else(|| "unknown".into());
let commit_short_hash = Command::new("git")
.args(["rev-parse", "--short", "HEAD"])
.output()
.ok()
.and_then(|o| String::from_utf8(o.stdout).ok())
.unwrap_or_else(|| "unknown".into());
writeln!(
f,
"pub const GIT_COMMIT_HASH: &str = \"{}\";",
commit_hash.trim()
)
.unwrap();
writeln!(
f,
"pub const GIT_COMMIT_SHORT_HASH: &str = \"{}\";",
commit_short_hash.trim()
)
.unwrap();
}