Crates.io | clap-vergen-macro |
lib.rs | clap-vergen-macro |
version | 0.2.0 |
source | src |
created_at | 2022-08-07 15:56:29.781626 |
updated_at | 2022-08-07 15:56:29.781626 |
description | proc-macro for cargo-vergen |
homepage | |
repository | https://github.com/termoshtt/clap-vergen |
max_upload_size | |
id | 640279 |
size | 5,596 |
Reusable clap subcommand version
using vergen
Get version information in build.rs
:
use vergen::{vergen, Config};
fn main() {
let mut cfg = Config::default();
*cfg.sysinfo_mut().name_mut() = false;
vergen(cfg).expect("Fail to generate version info");
}
Then, add a subcommand:
use clap::Parser;
#[derive(Debug, clap::Parser)]
enum Cli {
Version(clap_vergen::Version),
}
fn main() {
match Cli::from_args() {
Cli::Version(version) => {
clap_vergen::print!(version);
}
}
}
This creates a version
subcommand in the executable
$ ./target/debug/clap-vergen-example version --help
clap-vergen-example-version
Output detail version of executable
USAGE:
clap-vergen-example version [OPTIONS]
OPTIONS:
-h, --help Print help information
--json Output version info as JSON
Two output formats are supported:
$ ./target/debug/clap-vergen-example version
Build Timestamp: 2022-08-06T08:16:05.843030928Z
Build Version: 0.1.0
Commit SHA: f1af7e4b9fc58b7aa73b1e14a617d9a341a9880d
Commit Date: 2022-08-06T08:12:22Z
Commit Branch: main
rustc Version: 1.63.0-beta.8
rustc Channel: beta
rustc Host Triple: x86_64-unknown-linux-gnu
rustc Commit SHA: 7410ebb8f69516d0034cc99793bc3dcbc84d4a9b
cargo Target Triple: x86_64-unknown-linux-gnu
cargo Profile: debug
JSON output:
$ ./target/debug/clap-vergen-example version --json
{
"build_timestamp": "2022-08-06T08:16:05.843030928Z",
"build_semver": "0.1.0",
"rustc_channel": "beta",
"rustc_commit_date": "2022-08-04",
"rustc_commit_hash": "7410ebb8f69516d0034cc99793bc3dcbc84d4a9b",
"rustc_host_triple": "x86_64-unknown-linux-gnu",
"rustc_llvm_version": "14.0",
"rustc_semver": "1.63.0-beta.8",
"cargo_features": "default",
"cargo_profile": "debug",
"cargo_target_triple": "x86_64-unknown-linux-gnu",
"git_branch": "main",
"git_commit_timestamp": "2022-08-06T08:12:22Z",
"git_semver": "0.1.0",
"git_sha": "f1af7e4b9fc58b7aa73b1e14a617d9a341a9880d"
}
See clap-vergen-example for working example.
© 2022 Toshiki Teramura (@termoshtt)
This project is licensed under either of
at your option.