Add about page

This commit is contained in:
Jeremy Soller 2024-02-27 21:20:00 -07:00
parent 6c6ceaa853
commit c9f99a3025
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
7 changed files with 140 additions and 5 deletions

8
build.rs Normal file
View file

@ -0,0 +1,8 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
vergen::EmitBuilder::builder()
.fail_on_error()
.git_commit_date()
.git_sha(true)
.emit()?;
Ok(())
}