mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 17:01:09 +00:00
Expose version info in CLI tool with build-time obtained git hash (#787)
* version info with built-time obtained git hash * clippy * rerun-if-changed properly and handle git command failing * cargo fmt
This commit is contained in:
@@ -13,6 +13,7 @@ enum Command {
|
||||
Metadata(commands::metadata::Opts),
|
||||
Codegen(commands::codegen::Opts),
|
||||
Compatibility(commands::compatibility::Opts),
|
||||
Version(commands::version::Opts),
|
||||
}
|
||||
|
||||
#[tokio::main]
|
||||
@@ -24,5 +25,6 @@ async fn main() -> color_eyre::Result<()> {
|
||||
Command::Metadata(opts) => commands::metadata::run(opts).await,
|
||||
Command::Codegen(opts) => commands::codegen::run(opts).await,
|
||||
Command::Compatibility(opts) => commands::compatibility::run(opts).await,
|
||||
Command::Version(opts) => commands::version::run(opts),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user