Add real --version

This commit is contained in:
Michael Vines 2020-11-17 16:45:45 -08:00
parent 47fbfc52de
commit 78dc334afe
3 changed files with 8 additions and 4 deletions

1
Cargo.lock generated
View File

@ -4968,6 +4968,7 @@ dependencies = [
"solana-sdk",
"solana-stake-program",
"solana-transaction-status",
"solana-version",
"tempfile",
"thiserror",
]

View File

@ -26,6 +26,7 @@ solana-runtime = { path = "../runtime", version = "1.5.0" }
solana-sdk = { path = "../sdk", version = "1.5.0" }
solana-stake-program = { path = "../programs/stake", version = "1.5.0" }
solana-transaction-status = { path = "../transaction-status", version = "1.5.0" }
solana-version = { path = "../version", version = "1.5.0" }
tempfile = "3.1.0"
thiserror = "1.0"

View File

@ -1,7 +1,9 @@
use crate::args::{
Args, BalancesArgs, Command, DistributeTokensArgs, StakeArgs, TransactionLogArgs,
};
use clap::{value_t, value_t_or_exit, App, Arg, ArgMatches, SubCommand};
use clap::{
crate_description, crate_name, value_t, value_t_or_exit, App, Arg, ArgMatches, SubCommand,
};
use solana_clap_utils::{
input_parsers::value_of,
input_validators::{is_amount, is_valid_pubkey, is_valid_signer},
@ -19,9 +21,9 @@ where
T: Into<OsString> + Clone,
{
let default_config_file = CONFIG_FILE.as_ref().unwrap();
App::new("solana-tokens")
.about("about")
.version("version")
App::new(crate_name!())
.about(crate_description!())
.version(solana_version::version!())
.arg(
Arg::with_name("config_file")
.long("config")