mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 09:38:24 -05:00
9 lines
183 B
Rust
9 lines
183 B
Rust
use std::error::Error;
|
|
use vergen::EmitBuilder;
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
|
// Emit the instructions
|
|
EmitBuilder::builder().git_sha(true).emit()?;
|
|
Ok(())
|
|
}
|