diff --git a/bigquery/Cargo.toml b/bigquery/Cargo.toml index 14991ad4..9d4fec95 100644 --- a/bigquery/Cargo.toml +++ b/bigquery/Cargo.toml @@ -17,7 +17,7 @@ google-cloud-googleapis = { version="0.12.0", path = "../googleapis", features=[ google-cloud-gax = { version = "0.17.0", path = "../foundation/gax"} thiserror = "1.0" tracing = "0.1" -reqwest = { version = "0.11", features = ["json", "stream", "multipart"], default-features = false } +reqwest = { version = "0.12.4", features = ["json", "stream", "multipart", "charset"], default-features = false } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version="1.32", features=["macros"] } @@ -27,7 +27,7 @@ base64 = "0.21" bigdecimal = { version="0.4", features=["serde"] } num-bigint = "0.4" backon = "0.4" -reqwest-middleware = "0.2" +reqwest-middleware = { version = "0.3", features = ["json", "multipart"] } anyhow = "1.0" google-cloud-auth = { optional = true, version = "0.14", path="../foundation/auth", default-features=false } diff --git a/foundation/auth/Cargo.toml b/foundation/auth/Cargo.toml index e6377cef..9fb677b4 100644 --- a/foundation/auth/Cargo.toml +++ b/foundation/auth/Cargo.toml @@ -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", "charset"], default-features = false } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" } jsonwebtoken = { version = "9.2.0" } diff --git a/foundation/metadata/Cargo.toml b/foundation/metadata/Cargo.toml index 31444eb6..ae3b043a 100644 --- a/foundation/metadata/Cargo.toml +++ b/foundation/metadata/Cargo.toml @@ -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] diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 096844d2..5f002c13 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-storage" -version = "0.17.0" +version = "0.17.1" edition = "2021" authors = ["yoshidan "] repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage" @@ -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" @@ -55,8 +55,8 @@ 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" -retry-policies = "0.2.1" +reqwest-retry = "0.5.0" +retry-policies = "0.3.0" [features] default = ["default-tls", "auth"]