upgrade: tokio 0.2.9, reqwest 0.10.1 (#3653)

This commit is contained in:
Bartek Iwańczuk 2020-01-12 10:21:53 +01:00 committed by GitHub
parent 1ea06f9c84
commit 8fac8ab130
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 22 deletions

View file

@ -45,7 +45,7 @@ log = "0.4.8"
rand = "0.7.2"
regex = "1.3.1"
remove_dir_all = "0.5.2"
reqwest = { version = "0.10.0", default-features = false, features = ["rustls-tls", "stream", "gzip"] }
reqwest = { version = "0.10.1", default-features = false, features = ["rustls-tls", "stream", "gzip"] }
ring = "0.16.9"
rustyline = "5.0.6"
serde = { version = "1.0.104", features = ["derive"] }
@ -55,7 +55,7 @@ source-map-mappings = "0.5.0"
sys-info = "0.5.8"
tempfile = "3.1.0"
termcolor = "1.0.5"
tokio = { version = "0.2.6", features = ["full"] }
tokio = { version = "0.2.9", features = ["full"] }
tokio-executor = "0.1.9"
tokio-rustls = "0.12.1"
url = "2.1.0"

View file

@ -135,7 +135,7 @@ fn op_run(
let mut table = state_.lock_resource_table();
let stdin_rid = match child.stdin().take() {
let stdin_rid = match child.stdin.take() {
Some(child_stdin) => {
let rid = table.add(
"childStdin",
@ -146,7 +146,7 @@ fn op_run(
None => None,
};
let stdout_rid = match child.stdout().take() {
let stdout_rid = match child.stdout.take() {
Some(child_stdout) => {
let rid = table.add(
"childStdout",
@ -157,7 +157,7 @@ fn op_run(
None => None,
};
let stderr_rid = match child.stderr().take() {
let stderr_rid = match child.stderr.take() {
Some(child_stderr) => {
let rid = table.add(
"childStderr",