Upgrade rust crates (#3292)

This commit is contained in:
Bert Belder 2019-11-07 14:26:49 -08:00
parent c57207e96a
commit adab69bccc
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461
5 changed files with 358 additions and 396 deletions

716
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -31,22 +31,22 @@ byteorder = "1.3.2"
clap = "2.33.0"
dirs = "2.0.2"
futures = "0.1.29"
http = "0.1.18"
hyper = "0.12.34"
http = "0.1.19"
hyper = "0.12.35"
hyper-rustls = "0.17.1"
indexmap = "1.2.0"
indexmap = "1.3.0"
lazy_static = "1.4.0"
libc = "0.2.62"
libc = "0.2.65"
log = "0.4.8"
rand = "0.7.0"
rand = "0.7.2"
regex = "1.3.1"
remove_dir_all = "0.5.2"
reqwest = { version = "0.9.20", default-features = false, features = ["rustls-tls"] }
reqwest = { version = "0.9.22", default-features = false, features = ["rustls-tls"] }
ring = "0.16.9"
rustyline = "5.0.2"
serde = { version = "1.0.100", features = ["derive"] }
serde_derive = "1.0.100"
serde_json = { version = "1.0.40", features = [ "preserve_order" ] }
rustyline = "5.0.4"
serde = { version = "1.0.102", features = ["derive"] }
serde_derive = "1.0.102"
serde_json = { version = "1.0.41", features = [ "preserve_order" ] }
source-map-mappings = "0.5.0"
sys-info = "0.5.8"
tempfile = "3.1.0"
@ -56,8 +56,8 @@ tokio-executor = "0.1.8"
tokio-fs = "0.1.6"
tokio-io = "0.1.12"
tokio-process = "0.2.4"
tokio-rustls = "0.10.0"
tokio-threadpool = "0.1.15"
tokio-rustls = "0.10.2"
tokio-threadpool = "0.1.16"
url = "1.7.2"
utime = "0.2.1"
webpki = "0.21.0"
@ -71,4 +71,4 @@ fwdansi = "1.0.1"
nix = "0.14.1"
[dev-dependencies]
os_pipe = "0.8.2"
os_pipe = "0.9.1"

View file

@ -14,12 +14,12 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
downcast-rs = "1.1.0"
downcast-rs = "1.1.1"
futures = "0.1.29"
lazy_static = "1.4.0"
libc = "0.2.62"
libc = "0.2.65"
log = "0.4.8"
serde_json = "1.0.40"
serde_json = "1.0.41"
url = "1.7.2"
[[example]]

View file

@ -20,5 +20,5 @@ path = "lib.rs"
[dependencies]
deno = { path = "../core", version = "0.23.0" }
serde_json = "1.0.40"
serde = { version = "1.0.100", features = ["derive"] }
serde_json = "1.0.41"
serde = { version = "1.0.102", features = ["derive"] }

View file

@ -3,7 +3,7 @@ name = "hyper_hello"
version = "0.0.1"
[dependencies]
hyper = "0.12.34"
hyper = "0.12.35"
ring = "0.16.9"
[[bin]]