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

  Ok(())
}