1
0
Fork 0
mirror of https://gitlab.com/hagrid-keyserver/hagrid.git synced 2023-02-13 20:55:02 -05:00
hagrid-keyserver--hagrid/build.rs
2019-02-22 16:34:45 +01:00

9 lines
230 B
Rust

extern crate vergen;
use vergen::{generate_cargo_keys, ConstantsFlags};
fn main() {
// Generate the 'cargo:' key output
generate_cargo_keys(ConstantsFlags::all())
.expect("Unable to generate the cargo keys!");
}