mirror of
https://gitlab.com/hagrid-keyserver/hagrid.git
synced 2023-02-13 20:55:02 -05:00
9 lines
230 B
Rust
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!");
|
|
}
|