Skip to content

Commit

Permalink
update clap from 3.1.6 to 3.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
areshand authored and aptos-bot committed Apr 12, 2022
1 parent b913372 commit 576b417
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 32 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aptos-move/af-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.52"
bcs = "0.1.2"
clap = "3.1.6"
clap = "3.1.8"

aptos-vm = { path = "../aptos-vm" }
aptos-workspace-hack = { path = "../../crates/aptos-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion aptos-move/aptos-transactional-test-harness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = "3.1.6"
clap = "3.1.8"
once_cell = "1.7.2"
anyhow = "1.0.52"
bcs = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion aptos-move/framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ move-bytecode-utils = { git = "https://github.com/diem/move", rev = "3fe033b112e

bcs = "0.1.2"
anyhow = "1.0.52"
clap = "3.1.6"
clap = "3.1.8"
log = "0.4.14"
rayon = "1.5.0"
sha2 = "0.9.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/aptos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
base64 = "0.13.0"
clap = "3.1.6"
clap = "3.1.8"
hex = "0.4.3"
rand = "0.8.3"
serde = "1.0.124"
Expand Down
4 changes: 2 additions & 2 deletions crates/aptos/src/move_tool/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

use crate::CliResult;
use aptos_types::account_address::AccountAddress;
use clap::{ArgEnum, Parser, Subcommand};
use clap::{Parser, Subcommand};

/// CLI tool for performing onchain tasks
///
#[derive(Debug, ArgEnum, Subcommand)]
#[derive(Debug, Subcommand)]
pub enum ChainTool {
List(ListResources),
}
Expand Down
4 changes: 2 additions & 2 deletions crates/aptos/src/move_tool/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
//!
use crate::CliResult;
use clap::{ArgEnum, Parser, Subcommand};
use clap::{Parser, Subcommand};
use move_core_types::errmap::ErrorMapping;
use move_vm_types::gas_schedule::INITIAL_COST_SCHEDULE;

pub mod chain;

/// CLI tool for performing Move tasks
///
#[derive(ArgEnum, Subcommand)]
#[derive(Subcommand)]
pub enum MoveTool {
Command(MoveCli),
}
Expand Down
4 changes: 2 additions & 2 deletions crates/aptos/src/op/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
//!
use crate::CliResult;
use clap::{ArgEnum, Subcommand};
use clap::Subcommand;

pub mod key;

/// CLI tool for performing operational tasks
///
#[derive(ArgEnum, Debug, Subcommand)]
#[derive(Debug, Subcommand)]
pub enum OpTool {
#[clap(subcommand)]
Key(key::KeyTool),
Expand Down

0 comments on commit 576b417

Please sign in to comment.