mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
16 lines
310 B
Rust
16 lines
310 B
Rust
#![allow(missing_docs)]
|
|
|
|
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(())
|
|
}
|