diff options
author | Jason <m.jason.liu@outlook.com> | 2022-04-03 12:17:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 14:17:30 +1000 |
commit | a6e4b4297d840e9cfe4bdf373f24da8202f58e2d (patch) | |
tree | 9de6209eaa5affc810bc5bd9d7cc65384d55a9f3 /cli/lsp/diagnostics.rs | |
parent | 6c25b5135dfa6d9be35f6993e4b43d442977eff9 (diff) |
refactor(lsp): migrate from lspower back to tower-lsp (#14163)
Diffstat (limited to 'cli/lsp/diagnostics.rs')
-rw-r--r-- | cli/lsp/diagnostics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/diagnostics.rs b/cli/lsp/diagnostics.rs index fd905f6e0..b1ce06dcb 100644 --- a/cli/lsp/diagnostics.rs +++ b/cli/lsp/diagnostics.rs @@ -27,7 +27,6 @@ use deno_core::ModuleSpecifier; use deno_graph::Resolved; use deno_runtime::tokio_util::create_basic_runtime; use log::error; -use lspower::lsp; use std::collections::HashMap; use std::sync::Arc; use std::thread; @@ -35,6 +34,7 @@ use tokio::sync::mpsc; use tokio::sync::Mutex; use tokio::time::Duration; use tokio_util::sync::CancellationToken; +use tower_lsp::lsp_types as lsp; pub type SnapshotForDiagnostics = (Arc<StateSnapshot>, Arc<ConfigSnapshot>, Option<LintConfig>); |