mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 21:58:00 +00:00
14b71279ba
* subxt: Remove unstable lints that cause compile warnings Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Switch to workspace lints Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Fix codec package at root level Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Move profiles to the root level Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Fix lightclient and metadata crates Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Revert "cargo: Fix codec package at root level" This reverts commit cdf9e1628d708a972673eb3a9e967b6896edbd73. * Fix complexity clippy Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Remove lints to be replaced by `cargo machete` Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Remove unused dependencies (detected by machete) Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * ci: Add machete step Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cargo: Bump rust version Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * ci: Rename machete step Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * ci: Rename cargo machete step Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> --------- Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
35 lines
1012 B
Rust
35 lines
1012 B
Rust
//! Build script for the CLI.
|
|
|
|
use std::{borrow::Cow, process::Command};
|
|
|
|
fn main() {
|
|
// Make git hash available via GIT_HASH build-time env var:
|
|
output_git_short_hash();
|
|
}
|
|
|
|
fn output_git_short_hash() {
|
|
let output = Command::new("git")
|
|
.args(["rev-parse", "--short=11", "HEAD"])
|
|
.output();
|
|
|
|
let git_hash = match output {
|
|
Ok(o) if o.status.success() => {
|
|
let sha = String::from_utf8_lossy(&o.stdout).trim().to_owned();
|
|
Cow::from(sha)
|
|
}
|
|
Ok(o) => {
|
|
println!("cargo:warning=Git command failed with status: {}", o.status);
|
|
Cow::from("unknown")
|
|
}
|
|
Err(err) => {
|
|
println!("cargo:warning=Failed to execute git command: {err}");
|
|
Cow::from("unknown")
|
|
}
|
|
};
|
|
|
|
println!("cargo:rustc-env=GIT_HASH={git_hash}");
|
|
println!("cargo:rerun-if-changed=../.git/HEAD");
|
|
println!("cargo:rerun-if-changed=../.git/refs");
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
}
|