third_party: upgrade rust crates

This commit is contained in:
Bert Belder 2019-08-02 17:58:09 +02:00
parent 5bca001f97
commit c6861b537e
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461
8 changed files with 781 additions and 530 deletions

View file

@ -26,7 +26,6 @@ main_extern_rlib = [
"dirs",
"flatbuffers",
"futures",
"fwdansi",
"http",
"hyper",
"hyper_rustls",
@ -55,7 +54,10 @@ main_extern_rlib = [
"utime",
]
if (is_win) {
main_extern_rlib += [ "winapi" ]
main_extern_rlib += [
"fwdansi",
"winapi",
]
}
if (is_posix) {
main_extern_rlib += [ "nix" ]

View file

@ -18,39 +18,39 @@ edition = "2018"
[dependencies]
deno = { path = "../core" }
ansi_term = "0.11.0"
atty = "0.2.11"
ansi_term = "0.12.0"
atty = "0.2.13"
clap = "2.33.0"
dirs = "2.0.1"
dirs = "2.0.2"
flatbuffers = "0.6.0"
futures = "0.1.27"
http = "0.1.17"
hyper = "0.12.30"
futures = "0.1.28"
http = "0.1.18"
hyper = "0.12.33"
hyper-rustls = "0.16.1"
indexmap = "1.0.2"
integer-atomics = "1.0.2"
lazy_static = "1.3.0"
libc = "0.2.58"
log = "0.4.6"
libc = "0.2.60"
log = "0.4.8"
rand = "0.6.5"
regex = "1.1.7"
regex = "1.2.0"
remove_dir_all = "0.5.2"
ring = "0.14.6"
rustyline = "4.1.0"
serde = "1.0.92"
serde_derive = "1.0.92"
serde_json = { version = "1.0.39", features = [ "preserve_order" ] }
ring = "~0.14.6"
rustyline = "5.0.1"
serde = "1.0.98"
serde_derive = "1.0.98"
serde_json = { version = "1.0.40", features = [ "preserve_order" ] }
source-map-mappings = "0.5.0"
tempfile = "3.0.8"
termcolor = "1.0.4"
tokio = "0.1.21"
tokio-executor = "0.1.7"
tempfile = "3.1.0"
termcolor = "1.0.5"
tokio = "0.1.22"
tokio-executor = "0.1.8"
tokio-fs = "0.1.6"
tokio-io = "0.1.12"
tokio-process = "0.2.3"
tokio-process = "0.2.4"
tokio-rustls = "0.9.3"
tokio-threadpool = "0.1.14"
url = "1.7.2"
tokio-threadpool = "0.1.15"
url = "2.0.0"
utime = "0.2.1"
[target.'cfg(windows)'.dependencies]
@ -58,4 +58,4 @@ winapi = "0.3.7"
fwdansi = "1.0.1"
[target.'cfg(unix)'.dependencies]
nix = "0.13.x"
nix = "0.14.1"

View file

@ -174,6 +174,7 @@ impl GetErrorKind for url::ParseError {
}
RelativeUrlWithoutBase => ErrorKind::RelativeUrlWithoutBase,
SetHostOnCannotBeABaseUrl => ErrorKind::SetHostOnCannotBeABaseUrl,
_ => ErrorKind::Other,
}
}
}