mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
acb66f0699
* Restructure node-template so it is clear that node, runtime, and pallets are separated * Separating to mock and tests * restructuring runtime to top-level * updated release script * updated Cargo.lock
10 lines
246 B
Rust
10 lines
246 B
Rust
use vergen::{ConstantsFlags, generate_cargo_keys};
|
|
|
|
const ERROR_MSG: &str = "Failed to generate metadata files";
|
|
|
|
fn main() {
|
|
generate_cargo_keys(ConstantsFlags::SHA_SHORT).expect(ERROR_MSG);
|
|
|
|
build_script_utils::rerun_if_git_head_changed();
|
|
}
|