diff options
author | Bert Belder <bertbelder@gmail.com> | 2021-10-21 13:05:43 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2021-11-08 12:49:11 -0800 |
commit | f1b1a3f389827af8983a78680c066fdad337ae32 (patch) | |
tree | 7eaaac2b3094d40bc9fa4a453988ad7ddb4f37cd /cli/lsp/cache.rs | |
parent | b0426979029fe1923def25462f9b36b51c1263ec (diff) |
refactor: move `mod tokio_util` to runtime (#12332)
This avoids a bunch of duplicated code.
Diffstat (limited to 'cli/lsp/cache.rs')
-rw-r--r-- | cli/lsp/cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/cache.rs b/cli/lsp/cache.rs index 39b9dca60..1ea317240 100644 --- a/cli/lsp/cache.rs +++ b/cli/lsp/cache.rs @@ -5,12 +5,12 @@ use crate::cache::FetchCacher; use crate::flags::Flags; use crate::proc_state::ProcState; use crate::resolver::ImportMapResolver; -use crate::tokio_util::create_basic_runtime; use deno_core::error::anyhow; use deno_core::error::AnyError; use deno_core::ModuleSpecifier; use deno_runtime::permissions::Permissions; +use deno_runtime::tokio_util::create_basic_runtime; use import_map::ImportMap; use std::path::PathBuf; use std::thread; |