aboutsummaryrefslogtreecommitdiff
path: root/build.rs
blob: 2b8c3becf85be2f1219288a170315f560b64fc2a (plain) (blame)
1
2
3
4
5
fn main() -> Result<(), Box<dyn std::error::Error>> {
  vergen::EmitBuilder::builder().git_sha(true).emit()?;

  Ok(())
}