Browse Source

fix(deps): update rust crate reqwest to 0.11.9 (#632)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
remotes/origin/feat/support-install-latest
renovate[bot] 3 years ago committed by GitHub
parent
commit
7fb5205675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      Cargo.lock
  2. 2
      Cargo.toml

9
Cargo.lock generated

@ -619,9 +619,9 @@ checksum = "f0a01e0497841a3b2db4f8afa483cce65f7e96a3498bd6c541734792aeac8fe7" @@ -619,9 +619,9 @@ checksum = "f0a01e0497841a3b2db4f8afa483cce65f7e96a3498bd6c541734792aeac8fe7"
[[package]]
name = "h2"
version = "0.3.7"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fd819562fcebdac5afc5c113c3ec36f902840b70fd4fc458799c8ce4607ae55"
checksum = "0c9de88456263e249e241fcd211d3954e2c9b0ef7ccfc235a444eb367cae3689"
dependencies = [
"bytes",
"fnv",
@ -1200,9 +1200,9 @@ dependencies = [ @@ -1200,9 +1200,9 @@ dependencies = [
[[package]]
name = "reqwest"
version = "0.11.8"
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c4e0a76dc12a116108933f6301b95e83634e0c47b0afbed6abbaa0601e99258"
checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525"
dependencies = [
"async-compression",
"base64",
@ -1210,6 +1210,7 @@ dependencies = [ @@ -1210,6 +1210,7 @@ dependencies = [
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",

2
Cargo.toml

@ -25,7 +25,7 @@ log = "0.4.14" @@ -25,7 +25,7 @@ log = "0.4.14"
env_logger = "0.9.0"
atty = "0.2.14"
encoding_rs_io = "0.1.7"
reqwest = { version = "0.11.8", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "brotli"], default-features = false }
reqwest = { version = "0.11.9", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "brotli"], default-features = false }
url = "2.2.2"
sysinfo = "0.23.0"
thiserror = "1.0.30"

Loading…
Cancel
Save