Skip to content

Commit

Permalink
temporarily allow deprecated functions in cli that uses clap-v3
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Feb 26, 2024
1 parent e5b5431 commit c5e7e42
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions single-pool/cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![allow(clippy::arithmetic_side_effects)]
#![allow(deprecated)]

use {
clap::{CommandFactory, Parser},
Expand Down
2 changes: 2 additions & 0 deletions token-upgrade/cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(deprecated)]

use {
clap::{crate_description, crate_name, crate_version, Arg, Command},
solana_clap_v3_utils::{
Expand Down
2 changes: 2 additions & 0 deletions token/transfer-hook/cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(deprecated)]

pub mod meta;

use {
Expand Down

0 comments on commit c5e7e42

Please sign in to comment.