Revert "Use version from git-describe to better identify builds"

This commit is contained in:
Valentin Brandl
2023-04-14 00:50:35 +02:00
committed by GitHub
parent b3cc22af6c
commit a9b7368847
3 changed files with 3 additions and 7 deletions

View File

@@ -3,10 +3,7 @@ use ructe::Ructe;
use vergen::EmitBuilder;
fn main() -> Result<()> {
EmitBuilder::builder()
.git_sha(true)
.git_describe(true, true, None)
.emit()?;
EmitBuilder::builder().git_sha(true).emit()?;
let mut ructe = Ructe::from_env()?;
let mut statics = ructe.statics()?;