git.delta.rocks / unique-network / refs/commits / 2ddc70da9e1d

difftreelog

source

node/build.rs246 Bsourcehistory
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}