From 3b0563580d1fcb26df7b81b9c0204af730c47bcd Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 23 Oct 2024 20:24:07 -0500 Subject: [PATCH] fix(complete): Ensure new enough clap is used --- clap_complete/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clap_complete/Cargo.toml b/clap_complete/Cargo.toml index 6b095c3d066..0aa8c12fc45 100644 --- a/clap_complete/Cargo.toml +++ b/clap_complete/Cargo.toml @@ -34,7 +34,7 @@ pre-release-replacements = [ bench = false [dependencies] -clap = { path = "../", version = "4.5.18", default-features = false, features = ["std"] } +clap = { path = "../", version = "4.5.20", default-features = false, features = ["std"] } clap_lex = { path = "../clap_lex", version = "0.7.0", optional = true } is_executable = { version = "1.0.1", optional = true } shlex = { version = "1.3.0", optional = true } @@ -45,7 +45,7 @@ completest-pty = { version = "0.5.5", optional = true } snapbox = { version = "0.6.0", features = ["diff", "dir", "examples"] } # Cutting out `filesystem` feature trycmd = { version = "0.15.1", default-features = false, features = ["color-auto", "diff", "examples"] } -clap = { path = "../", version = "4.5.18", default-features = false, features = ["std", "derive", "help"] } +clap = { path = "../", version = "4.5.20", default-features = false, features = ["std", "derive", "help"] } automod = "1.0.14" [[example]]