summaryrefslogtreecommitdiff
path: root/cli/flags_allow_net.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/flags_allow_net.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/flags_allow_net.rs')
-rw-r--r--cli/flags_allow_net.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/flags_allow_net.rs b/cli/flags_allow_net.rs
index 31e035687..19e3c1e0f 100644
--- a/cli/flags_allow_net.rs
+++ b/cli/flags_allow_net.rs
@@ -1,6 +1,6 @@
+use deno_core::url::Url;
use std::net::IpAddr;
use std::str::FromStr;
-use url::Url;
#[derive(Debug, PartialEq, Eq)]
pub struct ParsePortError(String);