From 3a2eb12f68993ba6c03494ffb5e6fc8cb9f084c1 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 20 Mar 2024 14:16:23 -0400 Subject: [PATCH] Fix binary name for extension CLI (#9591) This PR fixes the binary name for the extension CLI. This was originally done in #9541, but got accidentally reverted in #9549. Release Notes: - N/A --- crates/extension_cli/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/extension_cli/Cargo.toml b/crates/extension_cli/Cargo.toml index 1b56a7e87d..f459c933dc 100644 --- a/crates/extension_cli/Cargo.toml +++ b/crates/extension_cli/Cargo.toml @@ -8,6 +8,10 @@ license = "GPL-3.0-or-later" [lints] workspace = true +[[bin]] +name = "zed-extension" +path = "src/main.rs" + [dependencies] anyhow.workspace = true clap = { workspace = true, features = ["derive"] }