mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00: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(())
|
|
}
|