diff --git a/Cargo.lock b/Cargo.lock index e09876b0e10..6af994e7fe6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/clap_builder/Cargo.toml b/clap_builder/Cargo.toml index 9b3bf9ed442..cc0b8814ba1 100644 --- a/clap_builder/Cargo.toml +++ b/clap_builder/Cargo.toml @@ -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 }