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

2
Cargo.toml

@ -25,7 +25,7 @@ log = "0.4.14"
env_logger = "0.9.0" env_logger = "0.9.0"
atty = "0.2.14" atty = "0.2.14"
encoding_rs_io = "0.1.7" 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" url = "2.2.2"
sysinfo = "0.23.0" sysinfo = "0.23.0"
thiserror = "1.0.30" thiserror = "1.0.30"

Loading…
Cancel
Save