Files
nanoreth/bin/reth/build.rs
2023-05-19 19:04:01 +02:00

9 lines
218 B
Rust

use std::error::Error;
use vergen::EmitBuilder;
fn main() -> Result<(), Box<dyn Error>> {
// Emit the instructions
EmitBuilder::builder().git_sha(true).build_timestamp().cargo_features().emit()?;
Ok(())
}