Browse Source

fix native-creds errors (using the unpublished version of reqwest) (#671)

remotes/origin/feat/support-install-latest
Gal Schlezinger 3 years ago committed by GitHub
parent
commit
80f59f686c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      Cargo.lock
  2. 2
      Cargo.toml

3
Cargo.lock generated

@ -1167,8 +1167,7 @@ dependencies = [ @@ -1167,8 +1167,7 @@ dependencies = [
[[package]]
name = "reqwest"
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525"
source = "git+https://github.com/seanmonstar/reqwest.git?rev=d92d2aa3ce4667faa38454c8dae4fa9f72b91b71#d92d2aa3ce4667faa38454c8dae4fa9f72b91b71"
dependencies = [
"async-compression",
"base64",

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.9", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "brotli"], default-features = false }
reqwest = { git = "https://github.com/seanmonstar/reqwest.git", rev = "d92d2aa3ce4667faa38454c8dae4fa9f72b91b71", 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