unique-network
refs/commits
8b6fe6666d58
build.rs
1use vergen::{ConstantsFlags, generate_cargo_keys};23const ERROR_MSG: &str = "Failed to generate metadata files";45fn main() {6 generate_cargo_keys(ConstantsFlags::SHA_SHORT).expect(ERROR_MSG);78 build_script_utils::rerun_if_git_head_changed();9}