Skip to content

Commit

Permalink
Correctly pin reqwest crates (#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Taiki Ono <[email protected]>
  • Loading branch information
taiki45 authored Jul 1, 2024
1 parent ed61ccd commit 88a7b1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ lambda_http = "0.12"
lambda_runtime = "0.12"
octorust = "0.7.0"
pem = "3.0.3"
reqwest = { version = "= 0.11", features = ["json"] } # 1.12 has breacking changes with middleware creates.
reqwest-middleware = "= 0.2.5"
reqwest-retry = "= 0.4.0"
retry-policies = "= 0.3.0"
reqwest = { version = "< 0.12", features = ["json"] } # 1.12 has breacking changes with middleware creates.
reqwest-middleware = "< 0.3"
reqwest-retry = "< 0.5"
retry-policies = "< 0.4"
serde = "1.0.203"
serde_json = "1.0.119"
sha2 = "0.10.8"
Expand Down

0 comments on commit 88a7b1e

Please sign in to comment.