zig: Upgrade zed_extension_api to v0.1.0 (#16260)

This PR updates the Zig extension to use v0.1.0 of the Zed extension
API.

This allows us to pin ZLS to v0.11.0, as the more recent releases of ZLS
don't have `.tar.gz` assets available.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-08-14 18:40:27 -04:00 committed by GitHub
parent 796cba9e0e
commit 0df4d12234
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 13 deletions

2
Cargo.lock generated
View file

@ -14121,7 +14121,7 @@ dependencies = [
name = "zed_zig"
version = "0.1.5"
dependencies = [
"zed_extension_api 0.0.6",
"zed_extension_api 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]

View file

@ -13,4 +13,4 @@ path = "src/zig.rs"
crate-type = ["cdylib"]
[dependencies]
zed_extension_api = "0.0.6"
zed_extension_api = "0.1.0"

View file

@ -61,21 +61,11 @@ impl ZigExtension {
&language_server_id,
&zed::LanguageServerInstallationStatus::CheckingForUpdate,
);
// TODO: Once we're ready to release v0.0.7 of the Zed extension API we want to pin
// ZLS to a specific version with `zed::github_release_by_tag_name`.
// We're pinning ZLS to a release that has `.tar.gz` assets, since the latest release does not have
// them, at time of writing.
//
// ZLS tracking issue: https://github.com/zigtools/zls/issues/1879
// let release = zed::github_release_by_tag_name("zigtools/zls", "0.11.0")?;
let release = zed::latest_github_release(
"zigtools/zls",
zed::GithubReleaseOptions {
require_assets: true,
pre_release: false,
},
)?;
let release = zed::github_release_by_tag_name("zigtools/zls", "0.11.0")?;
let asset_name = format!(
"zls-{arch}-{os}.{extension}",