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

Commit b182740

Browse files
committed
upgrade clap version to 3.2.23
1 parent fe242e5 commit b182740

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

token/cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ walkdir = "2"
1313

1414
[dependencies]
1515
base64 = "0.22.0"
16-
clap = "2.33.3"
16+
clap = "3.2.23"
1717
console = "0.15.8"
1818
futures = "0.3"
1919
serde = "1.0.197"
2020
serde_derive = "1.0.103"
2121
serde_json = "1.0.115"
2222
solana-account-decoder = ">=1.18.2,<=2"
23-
solana-clap-utils = ">=1.18.2,<=2"
23+
solana-clap-v3-utils = ">=1.18.2,<=2"
2424
solana-cli-config = ">=1.18.2,<=2"
2525
solana-cli-output = ">=1.18.2,<=2"
2626
solana-client = ">=1.18.2,<=2"
@@ -29,19 +29,19 @@ solana-remote-wallet = ">=1.18.2,<=2"
2929
solana-sdk = ">=1.18.2,<=2"
3030
solana-transaction-status = ">=1.18.2,<=2"
3131
spl-token = { version = "4.0", path = "../program", features = [
32-
"no-entrypoint",
32+
"no-entrypoint",
3333
] }
3434
spl-token-2022 = { version = "3.0.2", path = "../program-2022", features = [
35-
"no-entrypoint",
35+
"no-entrypoint",
3636
] }
3737
spl-token-client = { version = "0.9.2", path = "../client" }
3838
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
3939
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
4040
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
41-
"no-entrypoint",
41+
"no-entrypoint",
4242
] }
4343
spl-memo = { version = "4.0", path = "../../memo/program", features = [
44-
"no-entrypoint",
44+
"no-entrypoint",
4545
] }
4646
strum = "0.26"
4747
strum_macros = "0.26"

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
@@ -15,7 +15,7 @@ use {
1515
parse_token::{get_token_account_mint, parse_token, TokenAccountType, UiAccountState},
1616
UiAccountData,
1717
},
18-
solana_clap_utils::{
18+
solana_clap_v3_utils::{
1919
input_parsers::{pubkey_of_signer, pubkeys_of_multiple_signers, value_of},
2020
keypair::signer_from_path,
2121
},

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)