Skip to content

Commit

Permalink
chore(deps): bump clap from 3.0.0-beta.4 to beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Nov 1, 2021
1 parent a1ca4f0 commit 78683ce
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 73 deletions.
60 changes: 33 additions & 27 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 komorebi-core/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = "3.0.0-beta.4"
clap = "3.0.0-beta.5"
color-eyre = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion komorebi/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ edition = "2021"
komorebi-core = { path = "../komorebi-core" }

bitflags = "1"
clap = "3.0.0-beta.4"
clap = "3.0.0-beta.5"
color-eyre = "0.5"
crossbeam-channel = "0.5"
crossbeam-utils = "0.8"
Expand Down
4 changes: 2 additions & 2 deletions komorebi/src/main.rs
Expand Up @@ -13,7 +13,7 @@ use std::thread;
#[cfg(feature = "deadlock_detection")]
use std::time::Duration;

use clap::Clap;
use clap::Parser;
use color_eyre::eyre::anyhow;
use color_eyre::Result;
use crossbeam_channel::Receiver;
Expand Down Expand Up @@ -260,7 +260,7 @@ fn detect_deadlocks() {
});
}

#[derive(Clap)]
#[derive(Parser)]
#[clap(author, about, version)]
struct Opts {
/// Allow the use of komorebi's custom focus-follows-mouse implementation
Expand Down
2 changes: 1 addition & 1 deletion komorebic/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ edition = "2021"
derive-ahk = { path = "../derive-ahk" }
komorebi-core = { path = "../komorebi-core" }

clap = "3.0.0-beta.4"
clap = "3.0.0-beta.5"
color-eyre = "0.5"
dirs = "4"
fs-tail = "0.1"
Expand Down

0 comments on commit 78683ce

Please sign in to comment.