chore: rm unused build.rs vergen (#6198)

This commit is contained in:
Matthias Seitz
2024-01-24 02:31:38 +01:00
committed by GitHub
parent e1483d8226
commit 247d87fd2e
2 changed files with 0 additions and 13 deletions

View File

@ -86,9 +86,6 @@ paste = "1.0"
assert_matches.workspace = true
[build-dependencies]
vergen = { version = "8", features = ["git", "git2"] }
[features]
default = ["mdbx"]
test-utils = ["tempfile", "arbitrary"]

View File

@ -1,10 +0,0 @@
#![allow(missing_docs)]
use std::error::Error;
use vergen::EmitBuilder;
fn main() -> Result<(), Box<dyn Error>> {
// Emit the instructions
EmitBuilder::builder().git_sha(true).emit()?;
Ok(())
}