homestar-runtime 0.3.0

Homestar runtime implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("cargo:rerun-if-changed=migrations");

    vergen::EmitBuilder::builder()
        .git_sha(true)
        .git_commit_timestamp()
        .cargo_features()
        .emit()?;

    println!("cargo:rerun-if-changed=build.rs");

    Ok(())
}