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
This commit is contained in:
Marshall Bowers 2024-03-20 14:16:23 -04:00 committed by GitHub
parent 59bc81d1bc
commit 3a2eb12f68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"] }