land-core 0.0.4

The CLI for the Runtime Land
Documentation
1
2
3
4
5
6
7
8
9
use std::error::Error;
use vergen::EmitBuilder;

fn main() -> Result<(), Box<dyn Error>> {
    println!("cargo:rerun-if-changed=build.rs");
    // Emit the instructions
    EmitBuilder::builder().all_build().all_cargo().emit()?;
    Ok(())
}