Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrades clap and env_logger #173

Merged
merged 1 commit into from
Jan 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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