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

9 lines
221 B
Rust
Raw Normal View History

2019-02-12 07:10:59 -05:00
extern crate vergen;
use vergen::{generate_cargo_keys, ConstantsFlags};
fn main() {
// Generate the 'cargo:' key output
2022-02-26 10:54:07 -05:00
generate_cargo_keys(ConstantsFlags::all()).expect("Unable to generate the cargo keys!");
2019-02-12 07:10:59 -05:00
}