diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 14:28:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-16 14:28:07 -0400 |
commit | 104aebdfb5d01f7482bacef6d58c2ce16da44334 (patch) | |
tree | b5f815e9d8cf8fb19eda5d965ef072a5836ae887 /cli/tsc.rs | |
parent | c3ef358c01956bfa44a7427a2548943c3f045138 (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/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index 570d5f812..1e75b7041 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -25,6 +25,7 @@ use crate::worker::Worker; use core::task::Context; use deno_core::error::generic_error; use deno_core::error::AnyError; +use deno_core::url::Url; use deno_core::ModuleSpecifier; use futures::future::Future; use futures::future::FutureExt; @@ -56,7 +57,6 @@ use std::task::Poll; use swc_common::comments::Comment; use swc_common::comments::CommentKind; use swc_ecmascript::dep_graph; -use url::Url; pub const AVAILABLE_LIBS: &[&str] = &[ "deno.ns", |