
to port to the library, might need a nice layer over the FreeBSD's C api (nix?) before hand.
16 lines
256 B
Rust
16 lines
256 B
Rust
use std::error::Error;
|
|
|
|
use vergen::EmitBuilder;
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
|
EmitBuilder::builder()
|
|
.all_build()
|
|
.all_cargo()
|
|
.all_git()
|
|
.all_rustc()
|
|
.all_sysinfo()
|
|
.emit()?;
|
|
|
|
Ok(())
|
|
}
|