summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli/deno_error.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 632c60c13..09b881bf3 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -49,7 +49,7 @@ tokio-io = "0.1.12"
tokio-process = "0.2.4"
tokio-rustls = "0.9.3"
tokio-threadpool = "0.1.15"
-url = "2.1.0"
+url = "1.7.2"
utime = "0.2.1"
[target.'cfg(windows)'.dependencies]
diff --git a/cli/deno_error.rs b/cli/deno_error.rs
index 3b7dbcde8..36d8b724a 100644
--- a/cli/deno_error.rs
+++ b/cli/deno_error.rs
@@ -174,7 +174,6 @@ impl GetErrorKind for url::ParseError {
}
RelativeUrlWithoutBase => ErrorKind::RelativeUrlWithoutBase,
SetHostOnCannotBeABaseUrl => ErrorKind::SetHostOnCannotBeABaseUrl,
- _ => ErrorKind::Other,
}
}
}