mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
third_party: upgrade rust crates
This commit is contained in:
parent
5bca001f97
commit
c6861b537e
8 changed files with 781 additions and 530 deletions
640
Cargo.lock
generated
640
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -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" ]
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -174,6 +174,7 @@ impl GetErrorKind for url::ParseError {
|
|||
}
|
||||
RelativeUrlWithoutBase => ErrorKind::RelativeUrlWithoutBase,
|
||||
SetHostOnCannotBeABaseUrl => ErrorKind::SetHostOnCannotBeABaseUrl,
|
||||
_ => ErrorKind::Other,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,12 +18,12 @@ name = "snapshot_creator"
|
|||
path = "snapshot_creator.rs"
|
||||
|
||||
[dependencies]
|
||||
futures = "0.1.27"
|
||||
futures = "0.1.28"
|
||||
lazy_static = "1.3.0"
|
||||
libc = "0.2.58"
|
||||
log = "0.4.6"
|
||||
serde_json = "1.0.39"
|
||||
url = "1.7.2"
|
||||
libc = "0.2.60"
|
||||
log = "0.4.8"
|
||||
serde_json = "1.0.40"
|
||||
url = "2.0.0"
|
||||
|
||||
[[example]]
|
||||
name = "deno_core_http_bench"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ce150f96ea9dddfcceb1830ea85810d778796afe
|
||||
Subproject commit ddb37d7734154c3c07e7c14deaf6523a635e52d8
|
|
@ -3,7 +3,7 @@ name = "hyper_hello"
|
|||
version = "0.0.1"
|
||||
|
||||
[dependencies]
|
||||
hyper = "0.12.30"
|
||||
hyper = "0.12.33"
|
||||
ring = "0.14.6"
|
||||
|
||||
[[bin]]
|
||||
|
|
Loading…
Reference in a new issue