mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
14 lines
285 B
Rust
14 lines
285 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()
|
|
.cargo_target_triple()
|
|
.emit()?;
|
|
Ok(())
|
|
}
|