From a8532b41719b5c54b71469b431435961572edacd Mon Sep 17 00:00:00 2001 From: Ben Rogers Date: Wed, 8 May 2024 12:46:14 -0700 Subject: [PATCH] Add clap_complete to our rust dependencies Summary: X-link: https://github.com/pytorch/executorch/pull/3544 clap_complete is necessary to add autocomplete to buck2 Reviewed By: JakobDegen Differential Revision: D57104118 fbshipit-source-id: f7a1c68fed6bac605b780a0581e72bea07e800bb --- shim/third-party/rust/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/shim/third-party/rust/Cargo.toml b/shim/third-party/rust/Cargo.toml index 3741149e15..1084abbddc 100644 --- a/shim/third-party/rust/Cargo.toml +++ b/shim/third-party/rust/Cargo.toml @@ -50,6 +50,7 @@ bytesize = "1.1.0" chrono = "0.4.28" clap = { package = "clap", version = "4.5.4", features = ["derive", "env", "string"] } clap-3 = { package = "clap", version = "3.2.24", features = ["derive", "env", "regex", "unicode", "wrap_help"] } +clap_complete = { package = "clap_complete", version = "4.5.1" } common-path = "1.0.0" compact_str = "0.6.1" constant_time_eq = "0.2.4"