This repository has been archived on 2021-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-49/game/build.rs

11 lines
282 B
Rust

use anyhow::Result;
use vergen::{Config, ShaKind, vergen};
fn main() -> Result<()> {
// Reads local Git information to inject into the executable at build time
let mut config = Config::default();
*config.git_mut().sha_kind_mut() = ShaKind::Short;
vergen(config)
}