chore(deps): bump clap to 3.0.0

This commit is contained in:
LGUG2Z
2021-12-31 15:19:14 -08:00
parent e2ae9b1207
commit 228ef78d7f
4 changed files with 7 additions and 7 deletions

8
Cargo.lock generated
View File

@@ -84,9 +84,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "3.0.0-rc.11"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6f243c7279f09ffed852a0a564c72091331651484cdbb32b7287f16df8611a7"
checksum = "d17bf219fcd37199b9a29e00ba65dfb8cd5b2688b7297ec14ff829c40ac50ca9"
dependencies = [
"atty",
"bitflags",
@@ -102,9 +102,9 @@ dependencies = [
[[package]]
name = "clap_derive"
version = "3.0.0-rc.11"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cd9992739777a4a23535089a8d235eac43044ba8b431d9f54fe334dfa779930"
checksum = "e1b9752c030a14235a0bd5ef3ad60a1dcac8468c30921327fc8af36b20c790b9"
dependencies = [
"heck",
"proc-macro-error",

View File

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.0.0-rc.11", features = ["derive"] }
clap = { version = "3", features = ["derive"] }
color-eyre = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

View File

@@ -14,7 +14,7 @@ edition = "2021"
komorebi-core = { path = "../komorebi-core" }
bitflags = "1"
clap = { version = "3.0.0-rc.11", features = ["derive"] }
clap = { version = "3", features = ["derive"] }
color-eyre = "0.5"
crossbeam-channel = "0.5"
crossbeam-utils = "0.8"

View File

@@ -14,7 +14,7 @@ edition = "2021"
derive-ahk = { path = "../derive-ahk" }
komorebi-core = { path = "../komorebi-core" }
clap = { version = "3.0.0-rc.11", features = ["derive", "wrap_help"] }
clap = { version = "3", features = ["derive", "wrap_help"] }
color-eyre = "0.5"
dirs = "4"
fs-tail = "0.1"