mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 02:20:58 -05:00
chore: Upgrade to clap v4
This commit is contained in:
parent
4b6e9c3c1b
commit
222da3d81a
2 changed files with 9 additions and 9 deletions
16
Cargo.lock
generated
16
Cargo.lock
generated
|
@ -196,12 +196,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "clap"
|
||||
version = "4.0.32"
|
||||
version = "4.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39"
|
||||
checksum = "aa91278560fc226a5d9d736cc21e485ff9aad47d26b8ffe1f54cba868b684b9f"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"clap_derive 4.0.21",
|
||||
"clap_derive 4.1.0",
|
||||
"clap_lex 0.3.0",
|
||||
"is-terminal",
|
||||
"once_cell",
|
||||
|
@ -215,7 +215,7 @@ version = "2.0.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "23e2b6c3dcdb73299f48ae05b294da14e2f560b3ed2c09e742269eb1b22af231"
|
||||
dependencies = [
|
||||
"clap 4.0.32",
|
||||
"clap 4.1.0",
|
||||
"log",
|
||||
]
|
||||
|
||||
|
@ -234,9 +234,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "clap_derive"
|
||||
version = "4.0.21"
|
||||
version = "4.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
|
||||
checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro-error",
|
||||
|
@ -303,7 +303,7 @@ version = "0.0.13"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "64a9572308414bfdbda25e41cdd4a15a90e68d93f2d5a66e3ff6e1cdc856f923"
|
||||
dependencies = [
|
||||
"clap 4.0.32",
|
||||
"clap 4.1.0",
|
||||
"concolor",
|
||||
]
|
||||
|
||||
|
@ -1619,7 +1619,7 @@ dependencies = [
|
|||
"assert_fs",
|
||||
"atty",
|
||||
"bstr 1.1.0",
|
||||
"clap 4.0.32",
|
||||
"clap 4.1.0",
|
||||
"clap-verbosity-flag",
|
||||
"concolor",
|
||||
"concolor-clap",
|
||||
|
|
|
@ -65,7 +65,7 @@ typos-dict = { version = "^0.9", path = "crates/typos-dict", optional = true }
|
|||
typos-vars = { version = "^0.8", path = "crates/typos-vars", optional = true }
|
||||
unicase = "2.6"
|
||||
anyhow = "1.0"
|
||||
clap = { version = "4.0.32", features = ["derive"] }
|
||||
clap = { version = "4.1.0", features = ["derive"] }
|
||||
clap-verbosity-flag = "2.0"
|
||||
ignore = "0.4"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
|
Loading…
Reference in a new issue