From 8d515a620fb6e5a95bb3224a380214dfa8efdccd Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 19 Mar 2024 12:36:53 -0400 Subject: [PATCH] Update binary name for extension CLI (#9541) This PR updates the binary name used by the extension CLI from `extension_cli` to `zed-extension`. 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 74e4d115f3..5012494eac 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"] }