Skip to content

Commit

Permalink
fix dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LenWilliamson committed May 2, 2024
1 parent 3d80300 commit 1237008
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bigquery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ ctor = "0.1.26"
tokio-util = { version = "0.7", features = ["codec"] }
google-cloud-auth = { path = "../foundation/auth", default-features = false }
reqwest-retry = "0.5.0"
retry-policies = "0.2.1"
retry-policies = "0.3.0"

[features]
default = ["default-tls", "auth"]
Expand Down

0 comments on commit 1237008

Please sign in to comment.