missing build.rs file

This commit is contained in:
Kai Michaelis 2019-02-12 13:10:59 +01:00
parent 56409d9922
commit 6d3f278914
1 changed files with 11 additions and 0 deletions

11
build.rs Normal file
View File

@ -0,0 +1,11 @@
extern crate vergen;
use vergen::{generate_cargo_keys, ConstantsFlags};
fn main() {
let flags = ConstantsFlags::all();
// Generate the 'cargo:' key output
generate_cargo_keys(ConstantsFlags::all())
.expect("Unable to generate the cargo keys!");
}