Skip to content

Commit

Permalink
update reqwest version to 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
LenWilliamson committed Apr 20, 2024
1 parent 15f562e commit f9fbe68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion foundation/auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Google Cloud Platform server application authentication library."

[dependencies]
tracing = "0.1"
reqwest = { version = "0.11", features = ["json"], default-features = false }
reqwest = { version = "0.12.4", features = ["json"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
jsonwebtoken = { version = "9.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion foundation/metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description = "Google Cloud Platform rust client."
[dependencies]
tokio = { version = "1.32", features = ["sync", "net", "parking_lot"] }
# this crate uses http only
reqwest = { version = "0.11" , default-features = false }
reqwest = { version = "0.12.4" , default-features = false }
thiserror = "1.0"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-storage"
version = "0.17.0"
version = "0.17.1"
edition = "2021"
authors = ["yoshidan <naohiro.y@gmail.com>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage"
Expand Down Expand Up @@ -31,12 +31,12 @@ once_cell = "1.18"
hex = "0.4"
url = "2.4"
tracing = "0.1"
reqwest = { version = "0.11", features = [
reqwest = { version = "0.12.4", features = [
"json",
"stream",
"multipart",
], default-features = false }
reqwest-middleware = "0.2"
reqwest-middleware = { version = "0.3", features = ["json", "multipart"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand All @@ -55,7 +55,7 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
ctor = "0.1.26"
tokio-util = { version = "0.7", features = ["codec"] }
google-cloud-auth = { path = "../foundation/auth", default-features = false }
reqwest-retry = "0.3.0"
reqwest-retry = "0.5.0"
retry-policies = "0.2.1"

[features]
Expand Down

0 comments on commit f9fbe68

Please sign in to comment.