summaryrefslogtreecommitdiff
path: root/cli/disk_cache.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-09-16 14:28:07 -0400
committerGitHub <noreply@github.com>2020-09-16 14:28:07 -0400
commit104aebdfb5d01f7482bacef6d58c2ce16da44334 (patch)
treeb5f815e9d8cf8fb19eda5d965ef072a5836ae887 /cli/disk_cache.rs
parentc3ef358c01956bfa44a7427a2548943c3f045138 (diff)
Re-export deno_core::url (#7525)
Also re-exports deno_core::futures and deno_core::serde_json but these are not yet used in the CLI.
Diffstat (limited to 'cli/disk_cache.rs')
-rw-r--r--cli/disk_cache.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/disk_cache.rs b/cli/disk_cache.rs
index d6fb9866c..cb27a6a50 100644
--- a/cli/disk_cache.rs
+++ b/cli/disk_cache.rs
@@ -1,5 +1,6 @@
use crate::fs as deno_fs;
use crate::http_cache::url_to_filename;
+use deno_core::url::{Host, Url};
use std::ffi::OsStr;
use std::fs;
use std::io;
@@ -8,7 +9,6 @@ use std::path::Path;
use std::path::PathBuf;
use std::path::Prefix;
use std::str;
-use url::{Host, Url};
#[derive(Clone)]
pub struct DiskCache {