mirror of
https://github.com/denoland/deno.git
synced 2025-01-18 11:53:59 -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"
|
version = "0.0.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dirs = "1.0.3"
|
dirs = "1.0.4"
|
||||||
flatbuffers = { path = "third_party/flatbuffers/rust/flatbuffers/" }
|
flatbuffers = { path = "third_party/flatbuffers/rust/flatbuffers/" }
|
||||||
futures = "0.1.23"
|
futures = "0.1.25"
|
||||||
hyper = "0.12.9"
|
hyper = "0.12.12"
|
||||||
# The current version of hyper-rustls, 0.14.0, depends on tokio-core, which is
|
# The current version of hyper-rustls, 0.14.0, depends on tokio-core, which is
|
||||||
# deprecated.
|
# deprecated.
|
||||||
hyper-rustls = { git = "https://github.com/ctz/hyper-rustls.git" }
|
hyper-rustls = { git = "https://github.com/ctz/hyper-rustls.git" }
|
||||||
libc = "0.2.42"
|
libc = "0.2.43"
|
||||||
log = "0.4.4"
|
log = "0.4.5"
|
||||||
rand = "0.4.3"
|
rand = "0.4.3"
|
||||||
ring = "0.13.2"
|
ring = "0.13.2"
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
tokio = "0.1.8"
|
tokio = "0.1.11"
|
||||||
url = "1.7.1"
|
url = "1.7.1"
|
||||||
|
|
|
@ -60,7 +60,7 @@ rust_crate("unicode_normalization") {
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("log") {
|
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" ]
|
extern = [ ":cfg_if" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ rust_crate("ws2_32") {
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("futures") {
|
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 = [
|
features = [
|
||||||
"use_std",
|
"use_std",
|
||||||
"with-deprecated",
|
"with-deprecated",
|
||||||
|
@ -397,7 +397,7 @@ rust_crate("num_cpus") {
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("hyper") {
|
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" ]
|
features = [ "runtime" ]
|
||||||
extern = [
|
extern = [
|
||||||
":bytes",
|
":bytes",
|
||||||
|
@ -465,6 +465,7 @@ rust_crate("futures_cpupool") {
|
||||||
":futures",
|
":futures",
|
||||||
":num_cpus",
|
":num_cpus",
|
||||||
]
|
]
|
||||||
|
args = [ "-Adeprecated" ] # futures::Run
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("indexmap") {
|
rust_crate("indexmap") {
|
||||||
|
@ -502,10 +503,11 @@ rust_crate("want") {
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("tokio") {
|
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 = [
|
extern = [
|
||||||
":futures",
|
":futures",
|
||||||
":mio",
|
":mio",
|
||||||
|
":bytes",
|
||||||
":tokio_codec",
|
":tokio_codec",
|
||||||
":tokio_executor",
|
":tokio_executor",
|
||||||
":tokio_fs",
|
":tokio_fs",
|
||||||
|
@ -521,7 +523,7 @@ rust_crate("tokio") {
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("tokio_executor") {
|
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" ]
|
extern = [ ":futures" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -634,7 +636,7 @@ rust_crate("tokio_threadpool") {
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("tokio_current_thread") {
|
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 = [
|
extern = [
|
||||||
":futures",
|
":futures",
|
||||||
":tokio_executor",
|
":tokio_executor",
|
||||||
|
@ -659,7 +661,7 @@ rust_crate("hyper_rustls") {
|
||||||
}
|
}
|
||||||
|
|
||||||
rust_crate("dirs") {
|
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 = [
|
extern = [
|
||||||
":libc",
|
":libc",
|
||||||
":winapi",
|
":winapi",
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 240ab01a523810c5d132ec10c6b2e9e089936582
|
Subproject commit bfdd8a7ce2d82a958b0672eed222c1e5f8f34aa9
|
Loading…
Add table
Reference in a new issue