Skip to content

Commit

Permalink
third_party: upgrade rust crates
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Aug 2, 2019
1 parent 5bca001 commit c6861b5
Show file tree
Hide file tree
Showing 8 changed files with 781 additions and 530 deletions.
640 changes: 339 additions & 301 deletions Cargo.lock

Large diffs are not rendered by default.

606 changes: 408 additions & 198 deletions build_extra/rust/BUILD.gn

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions cli/BUILD.gn
Expand Up @@ -26,7 +26,6 @@ main_extern_rlib = [
"dirs",
"flatbuffers",
"futures",
"fwdansi",
"http",
"hyper",
"hyper_rustls",
Expand Down Expand Up @@ -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" ]
Expand Down
44 changes: 22 additions & 22 deletions cli/Cargo.toml
Expand Up @@ -18,44 +18,44 @@ 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]
winapi = "0.3.7"
fwdansi = "1.0.1"

[target.'cfg(unix)'.dependencies]
nix = "0.13.x"
nix = "0.14.1"
1 change: 1 addition & 0 deletions cli/deno_error.rs
Expand Up @@ -174,6 +174,7 @@ impl GetErrorKind for url::ParseError {
}
RelativeUrlWithoutBase => ErrorKind::RelativeUrlWithoutBase,
SetHostOnCannotBeABaseUrl => ErrorKind::SetHostOnCannotBeABaseUrl,
_ => ErrorKind::Other,
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions core/Cargo.toml
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion third_party
Submodule third_party updated 1849 files
2 changes: 1 addition & 1 deletion tools/hyper_hello/Cargo.toml
Expand Up @@ -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]]
Expand Down

0 comments on commit c6861b5

Please sign in to comment.