Skip to content

Commit

Permalink
Merge pull request #8328 from rust-lang/renovate/reqwest-0.x
Browse files Browse the repository at this point in the history
Update Rust crate reqwest to v0.12.4
  • Loading branch information
Turbo87 authored Apr 22, 2024
2 parents 153966f + 8e6d6cc commit 51afb29
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 29 deletions.
57 changes: 33 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,14 @@ minijinja = "=1.0.20"
mockall = "=0.12.1"
oauth2 = { version = "=4.4.2", default-features = false, features = ["reqwest"] }
object_store = { version = "=0.9.1", features = ["aws"] }
object_store_http = { package = "http", version = "=0.2.12" }
once_cell = "=1.19.0"
p256 = "=0.13.2"
parking_lot = "=0.12.1"
paste = "=1.0.14"
prometheus = { version = "=0.13.3", default-features = false }
rand = "=0.8.5"
reqwest = { version = "=0.11.27", features = ["blocking", "gzip", "json"] }
reqwest = { version = "=0.12.4", features = ["blocking", "gzip", "json"] }
scheduled-thread-pool = "=0.2.7"
secrecy = "=0.8.0"
semver = { version = "=1.0.22", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/crates_io_github/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workspace = true
anyhow = "=1.0.82"
async-trait = "=0.1.80"
oauth2 = { version = "=4.4.2", default-features = false }
reqwest = { version = "=0.11.27", features = ["json"] }
reqwest = { version = "=0.12.4", features = ["json"] }
serde = { version = "=1.0.198", features = ["derive"] }
thiserror = "=1.0.59"
tracing = "=0.1.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/crates_io_smoke_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ anyhow = "=1.0.82"
bytes = "=1.6.0"
clap = { version = "=4.5.4", features = ["derive", "env", "unicode", "wrap_help"] }
crates_io_index = { path = "../crates_io_index" }
reqwest = { version = "=0.11.27", features = ["gzip", "json"] }
reqwest = { version = "=0.12.4", features = ["gzip", "json"] }
secrecy = "=0.8.0"
semver = { version = "=1.0.22", features = ["serde"] }
serde = { version = "=1.0.198", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ use object_store::memory::InMemory;
use object_store::path::Path;
use object_store::prefix::PrefixStore;
use object_store::{ClientOptions, ObjectStore, Result};
use reqwest::header::CACHE_CONTROL;
use reqwest::header::{HeaderMap, HeaderValue};
use object_store_http::header::CACHE_CONTROL;
use object_store_http::header::{HeaderMap, HeaderValue};
use secrecy::{ExposeSecret, SecretString};
use std::fs;
use std::path::PathBuf;
Expand Down

0 comments on commit 51afb29

Please sign in to comment.