diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-08-24 01:21:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-24 01:21:21 +0100 |
commit | 2ab4afc6b8e90f1315e0727c9b9c714c3667dc45 (patch) | |
tree | 05f07ba22d5d4a5f5120ab988320ad88ea20d542 /cli/tools/registry/api.rs | |
parent | bbd3a7e637b0223647405adf76b23092ab957157 (diff) |
refactor(lsp): changes for lsp_types 0.97.0 (#25169)
Diffstat (limited to 'cli/tools/registry/api.rs')
-rw-r--r-- | cli/tools/registry/api.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/registry/api.rs b/cli/tools/registry/api.rs index c382aa9ac..2f27cb2fe 100644 --- a/cli/tools/registry/api.rs +++ b/cli/tools/registry/api.rs @@ -3,8 +3,8 @@ use crate::http_util; use deno_core::error::AnyError; use deno_core::serde_json; +use deno_core::url::Url; use deno_runtime::deno_fetch; -use lsp_types::Url; use serde::de::DeserializeOwned; use crate::http_util::HttpClient; |