From b893682f35e2a7ddc574bf23846aaf511612242b Mon Sep 17 00:00:00 2001 From: Ulrich Kautz Date: Thu, 23 Jan 2025 04:23:45 -0800 Subject: [PATCH] Upgrade clap* packages Summary: Upgrade `clap` and `clap_complete` to latest version. Did not touch `clap_verbosity_flag` that is used by [three clap-3 using CLIs](https://www.internalfb.com/code/search?q=repo%3Afbcode%20clap_verbosity_flag). Followed [this guide](https://www.internalfb.com/wiki/Rust/Third_Party_Libraries/Adding_or_Updating_Libraries/#updating-cargo-toml). Reviewed By: mariusae, zertosh Differential Revision: D68497030 fbshipit-source-id: 026bfd0d4f5cfbfd86ba1142faeff24c6ff689eb --- shed/thrift_compiler/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shed/thrift_compiler/Cargo.toml b/shed/thrift_compiler/Cargo.toml index b486f18ec..1ea9af681 100644 --- a/shed/thrift_compiler/Cargo.toml +++ b/shed/thrift_compiler/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" [dependencies] anyhow = "1.0.95" -clap = { version = "4.5.20", features = ["derive", "env", "string", "unicode", "wrap_help"] } +clap = { version = "4.5.27", features = ["derive", "env", "string", "unicode", "wrap_help"] } dunce = "1.0.2" serde = { version = "1.0.185", features = ["derive", "rc"] } which = "4.2.4"