From 6c7a6d43fce52334b9309a70c02a98f911956bd4 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Mon, 17 Jul 2023 12:38:35 +0200 Subject: [PATCH] Cargo fix --- crates/zed/src/languages/php.rs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/crates/zed/src/languages/php.rs b/crates/zed/src/languages/php.rs index ee6493b576..84115b4528 100644 --- a/crates/zed/src/languages/php.rs +++ b/crates/zed/src/languages/php.rs @@ -1,19 +1,18 @@ use anyhow::{anyhow, Result}; -use async_compression::futures::bufread::GzipDecoder; -use async_tar::Archive; + + use async_trait::async_trait; use collections::HashMap; -use futures::{future::BoxFuture, FutureExt}; -use gpui::AppContext; + + use language::{LanguageServerName, LspAdapter, LspAdapterDelegate}; -use lsp::{CodeActionKind, LanguageServerBinary}; +use lsp::{LanguageServerBinary}; use node_runtime::NodeRuntime; -use serde_json::{json, Value}; -use smol::{fs, io::BufReader, stream::StreamExt}; + +use smol::{fs, stream::StreamExt}; use std::{ any::Any, ffi::OsString, - future, path::{Path, PathBuf}, sync::Arc, };