mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
Upgrade crates
This commit is contained in:
parent
428fc450eb
commit
6e6deed12d
3 changed files with 16 additions and 14 deletions
12
Cargo.toml
12
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"
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 240ab01a523810c5d132ec10c6b2e9e089936582
|
||||
Subproject commit bfdd8a7ce2d82a958b0672eed222c1e5f8f34aa9
|
Loading…
Reference in a new issue