2023-06-30 20:36:46 +02:00

14 lines
253 B
Rust

use {std::error::Error, vergen::EmitBuilder};
fn main() -> Result<(), Box<dyn Error>> {
EmitBuilder::builder()
.all_build()
.all_cargo()
.all_git()
.all_rustc()
.all_sysinfo()
.emit()?;
Ok(())
}