clojure: Upgrade zed_extension_api to v0.0.6 (#13933)

This PR upgrades the Clojure extension to use v0.0.6 of the
`zed_extension_api`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-07-08 11:07:53 -04:00 committed by GitHub
parent 7f50055d70
commit c617d48e16
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

2
Cargo.lock generated
View file

@ -13722,7 +13722,7 @@ dependencies = [
name = "zed_clojure" name = "zed_clojure"
version = "0.0.2" version = "0.0.2"
dependencies = [ dependencies = [
"zed_extension_api 0.0.4", "zed_extension_api 0.0.6",
] ]
[[package]] [[package]]

View file

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

View file

@ -1,5 +1,5 @@
use std::fs; use std::fs;
use zed_extension_api::{self as zed, Result}; use zed_extension_api::{self as zed, LanguageServerId, Result};
struct ClojureExtension { struct ClojureExtension {
cached_binary_path: Option<String>, cached_binary_path: Option<String>,
@ -8,7 +8,7 @@ struct ClojureExtension {
impl ClojureExtension { impl ClojureExtension {
fn language_server_binary_path( fn language_server_binary_path(
&mut self, &mut self,
config: zed::LanguageServerConfig, language_server_id: &LanguageServerId,
worktree: &zed::Worktree, worktree: &zed::Worktree,
) -> Result<String> { ) -> Result<String> {
if let Some(path) = worktree.which("clojure-lsp") { if let Some(path) = worktree.which("clojure-lsp") {
@ -22,7 +22,7 @@ impl ClojureExtension {
} }
zed::set_language_server_installation_status( zed::set_language_server_installation_status(
&config.name, &language_server_id,
&zed::LanguageServerInstallationStatus::CheckingForUpdate, &zed::LanguageServerInstallationStatus::CheckingForUpdate,
); );
let release = zed::latest_github_release( let release = zed::latest_github_release(
@ -60,7 +60,7 @@ impl ClojureExtension {
if !fs::metadata(&binary_path).map_or(false, |stat| stat.is_file()) { if !fs::metadata(&binary_path).map_or(false, |stat| stat.is_file()) {
zed::set_language_server_installation_status( zed::set_language_server_installation_status(
&config.name, &language_server_id,
&zed::LanguageServerInstallationStatus::Downloading, &zed::LanguageServerInstallationStatus::Downloading,
); );
@ -95,11 +95,11 @@ impl zed::Extension for ClojureExtension {
fn language_server_command( fn language_server_command(
&mut self, &mut self,
config: zed::LanguageServerConfig, language_server_id: &LanguageServerId,
worktree: &zed::Worktree, worktree: &zed::Worktree,
) -> Result<zed::Command> { ) -> Result<zed::Command> {
Ok(zed::Command { Ok(zed::Command {
command: self.language_server_binary_path(config, worktree)?, command: self.language_server_binary_path(language_server_id, worktree)?,
args: Vec::new(), args: Vec::new(),
env: Default::default(), env: Default::default(),
}) })