feat: add help and version command line arguments

This commit is contained in:
LinuxBoy-96 2025-03-24 14:50:51 -04:00 committed by GitHub
parent e00d8df43a
commit 5b383f669b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 87 additions and 0 deletions

5
build.rs Normal file
View file

@ -0,0 +1,5 @@
use vergen::EmitBuilder;
fn main() {
EmitBuilder::builder().git_sha(true).emit().unwrap();
}