chore(deps): update rust crate strsim to 0.11.0

This commit is contained in:
renovate[bot] 2024-02-01 01:06:03 +00:00 committed by GitHub
parent ba2d1112d1
commit cd0ca3cc13
2 changed files with 9 additions and 3 deletions

10
Cargo.lock generated
View file

@ -477,7 +477,7 @@ dependencies = [
"anstream",
"anstyle",
"clap_lex 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"strsim",
"strsim 0.10.0",
"terminal_size 0.3.0",
]
@ -491,7 +491,7 @@ dependencies = [
"clap_lex 0.6.0",
"color-print",
"static_assertions",
"strsim",
"strsim 0.11.0",
"terminal_size 0.3.0",
"unic-emoji-char",
"unicase",
@ -3151,6 +3151,12 @@ version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "strsim"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
[[package]]
name = "strum"
version = "0.25.0"

View file

@ -60,7 +60,7 @@ bench = false
[dependencies]
clap_lex = { path = "../clap_lex", version = "0.6.0" }
unicase = { version = "2.6.0", optional = true }
strsim = { version = "0.10.0", optional = true }
strsim = { version = "0.11.0", optional = true }
anstream = { version = "0.6.7", optional = true }
anstyle = "1.0.0"
terminal_size = { version = "0.3.0", optional = true }