diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-12-21 14:44:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 08:44:26 -0500 |
commit | bd85d0ed420b792eebdd81f88fca503e028c9565 (patch) | |
tree | d6f8d5baf4c3c0d760bea2b6b221189674d2e54b /cli/lsp/text.rs | |
parent | 3078fcf55a8aa04d26316ab353d84f2c9512bd47 (diff) |
refactor: rewrite lsp to be async (#8727)
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
Diffstat (limited to 'cli/lsp/text.rs')
-rw-r--r-- | cli/lsp/text.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/lsp/text.rs b/cli/lsp/text.rs index 5bca534c1..a0bcb08d3 100644 --- a/cli/lsp/text.rs +++ b/cli/lsp/text.rs @@ -4,7 +4,8 @@ use deno_core::serde_json::json; use deno_core::serde_json::Value; use dissimilar::diff; use dissimilar::Chunk; -use lsp_types::TextEdit; +use lspower::lsp_types; +use lspower::lsp_types::TextEdit; use std::ops::Bound; use std::ops::Range; use std::ops::RangeBounds; |