diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-19 21:23:51 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-19 21:42:23 -0400 |
commit | 6e6deed12d199a373756d99947d05e59136a00cd (patch) | |
tree | 40024772f632d096e52f9ef823e334a52bdc578a | |
parent | 428fc450eb7662b34a2367d42016674b909cc525 (diff) |
Upgrade crates
-rw-r--r-- | Cargo.toml | 12 | ||||
-rw-r--r-- | build_extra/rust/BUILD.gn | 16 | ||||
m--------- | third_party | 0 |
3 files changed, 15 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml index 060db2e85..9312ea194 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,17 +9,17 @@ name = "deno" version = "0.0.0" [dependencies] -dirs = "1.0.3" +dirs = "1.0.4" flatbuffers = { path = "third_party/flatbuffers/rust/flatbuffers/" } -futures = "0.1.23" -hyper = "0.12.9" +futures = "0.1.25" +hyper = "0.12.12" # The current version of hyper-rustls, 0.14.0, depends on tokio-core, which is # deprecated. hyper-rustls = { git = "https://github.com/ctz/hyper-rustls.git" } -libc = "0.2.42" -log = "0.4.4" +libc = "0.2.43" +log = "0.4.5" rand = "0.4.3" ring = "0.13.2" tempfile = "3" -tokio = "0.1.8" +tokio = "0.1.11" url = "1.7.1" diff --git a/build_extra/rust/BUILD.gn b/build_extra/rust/BUILD.gn index c1649e632..15948b3c8 100644 --- a/build_extra/rust/BUILD.gn +++ b/build_extra/rust/BUILD.gn @@ -60,7 +60,7 @@ rust_crate("unicode_normalization") { } rust_crate("log") { - source_root = "$registry_github/log-0.4.4/src/lib.rs" + source_root = "$registry_github/log-0.4.5/src/lib.rs" extern = [ ":cfg_if" ] } @@ -212,7 +212,7 @@ rust_crate("ws2_32") { } rust_crate("futures") { - source_root = "$registry_github/futures-0.1.23/src/lib.rs" + source_root = "$registry_github/futures-0.1.25/src/lib.rs" features = [ "use_std", "with-deprecated", @@ -397,7 +397,7 @@ rust_crate("num_cpus") { } rust_crate("hyper") { - source_root = "$registry_github/hyper-0.12.9/src/lib.rs" + source_root = "$registry_github/hyper-0.12.12/src/lib.rs" features = [ "runtime" ] extern = [ ":bytes", @@ -465,6 +465,7 @@ rust_crate("futures_cpupool") { ":futures", ":num_cpus", ] + args = [ "-Adeprecated" ] # futures::Run } rust_crate("indexmap") { @@ -502,10 +503,11 @@ rust_crate("want") { } rust_crate("tokio") { - source_root = "$registry_github/tokio-0.1.8/src/lib.rs" + source_root = "$registry_github/tokio-0.1.11/src/lib.rs" extern = [ ":futures", ":mio", + ":bytes", ":tokio_codec", ":tokio_executor", ":tokio_fs", @@ -521,7 +523,7 @@ rust_crate("tokio") { } rust_crate("tokio_executor") { - source_root = "$registry_github/tokio-executor-0.1.4/src/lib.rs" + source_root = "$registry_github/tokio-executor-0.1.5/src/lib.rs" extern = [ ":futures" ] } @@ -634,7 +636,7 @@ rust_crate("tokio_threadpool") { } rust_crate("tokio_current_thread") { - source_root = "$registry_github/tokio-current-thread-0.1.1/src/lib.rs" + source_root = "$registry_github/tokio-current-thread-0.1.3/src/lib.rs" extern = [ ":futures", ":tokio_executor", @@ -659,7 +661,7 @@ rust_crate("hyper_rustls") { } rust_crate("dirs") { - source_root = "$registry_github/dirs-1.0.3/src/lib.rs" + source_root = "$registry_github/dirs-1.0.4/src/lib.rs" extern = [ ":libc", ":winapi", diff --git a/third_party b/third_party -Subproject 240ab01a523810c5d132ec10c6b2e9e08993658 +Subproject bfdd8a7ce2d82a958b0672eed222c1e5f8f34aa |