Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 7e2df7b

Browse files
committed
upgrade clap version to 3.2.23
1 parent fd005ca commit 7e2df7b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

token/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ walkdir = "2"
1313

1414
[dependencies]
1515
base64 = "0.22.1"
16-
clap = "2.33.3"
16+
clap = "3.2.23"
1717
console = "0.15.8"
1818
futures = "0.3"
1919
serde = "1.0.209"

token/cli/src/bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
use {
33
crate::{clap_app::Error, command::CommandResult, config::Config},
44
clap::{value_t_or_exit, ArgMatches},
5-
solana_clap_utils::input_parsers::pubkey_of_signer,
5+
solana_clap_v3_utils::input_parsers::pubkey_of_signer,
66
solana_client::{
77
nonblocking::rpc_client::RpcClient, rpc_client::RpcClient as BlockingRpcClient,
88
tpu_client::TpuClient, tpu_client::TpuClientConfig,

token/cli/src/clap_app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use {
22
clap::{
33
crate_description, crate_name, crate_version, App, AppSettings, Arg, ArgGroup, SubCommand,
44
},
5-
solana_clap_utils::{
5+
solana_clap_v3_utils::{
66
fee_payer::fee_payer_arg,
77
input_validators::{
88
is_amount, is_amount_or_all, is_parsable, is_pubkey, is_url_or_moniker,

token/cli/src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use {
1616
parse_token::{get_token_account_mint, parse_token_v2, TokenAccountType, UiAccountState},
1717
UiAccountData,
1818
},
19-
solana_clap_utils::{
19+
solana_clap_v3_utils::{
2020
input_parsers::{pubkey_of_signer, pubkeys_of_multiple_signers, value_of},
2121
keypair::signer_from_path,
2222
},

token/cli/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use {
22
crate::clap_app::{Error, COMPUTE_UNIT_LIMIT_ARG, COMPUTE_UNIT_PRICE_ARG, MULTISIG_SIGNER_ARG},
33
clap::ArgMatches,
4-
solana_clap_utils::{
4+
solana_clap_v3_utils::{
55
input_parsers::{pubkey_of_signer, value_of},
66
input_validators::normalize_to_url_if_moniker,
77
keypair::{signer_from_path, signer_from_path_with_config, SignerFromPathConfig},

0 commit comments

Comments
 (0)