Skip to content

Commit

Permalink
Merge pull request #173 from Tpt/deps
Browse files Browse the repository at this point in the history
Upgrades clap and env_logger
  • Loading branch information
arkpar authored Jan 31, 2023
2 parents 15df7fe + f56c814 commit a829c36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions admin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false
edition = "2018"

[dependencies]
clap = { version = "3.2", features = ["derive"] }
env_logger = "0.9.0"
clap = { version = "4", features = ["derive"] }
env_logger = "0.10.0"
fdlimit = "0.2.1"
log = "0.4.8"
parity-db = { path = ".." }
Expand Down
2 changes: 1 addition & 1 deletion admin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ pub fn run() -> Result<(), String> {
#[derive(Debug, clap::Parser)]
pub struct Shared {
/// Specify db base path.
#[clap(long, short = 'd', value_name = "PATH", parse(from_os_str))]
#[clap(long, short = 'd', value_name = "PATH")]
pub base_path: Option<PathBuf>,

/// Do not sync file on each flush.
Expand Down

0 comments on commit a829c36

Please sign in to comment.