Skip to content

Commit

Permalink
deps: bump reqwest to 0.12, httptest to 0.16
Browse files Browse the repository at this point in the history
Bump reqwest to 0.12 as a prerequisite for FIPS support.
  • Loading branch information
ginglis13 committed Sep 30, 2024
1 parent f501c0f commit 394a152
Show file tree
Hide file tree
Showing 4 changed files with 158 additions and 34 deletions.
182 changes: 153 additions & 29 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ skip = [

skip-tree = [
# reqwest is using several older dependencies
{ name = "reqwest", version = "=0.11" },
{ name = "reqwest", version = "=0.12" },
]

[sources]
Expand Down
4 changes: 2 additions & 2 deletions tough/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ log = "0.4"
olpc-cjson = { version = "0.1", path = "../olpc-cjson" }
pem = "3"
percent-encoding = "2"
reqwest = { version = "0.11", optional = true, default-features = false, features = ["stream"] }
reqwest = { version = "0.12", optional = true, default-features = false, features = ["stream"] }
rustls = "0.23"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand All @@ -42,7 +42,7 @@ walkdir = "2"
[dev-dependencies]
failure-server = { path = "../integ/failure-server" }
hex-literal = "0.4"
httptest = "0.15"
httptest = "0.16"
maplit = "1"
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
tokio-test = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions tuftool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ log = "0.4"
maplit = "1"
olpc-cjson = { version = "0.1", path = "../olpc-cjson" }
rayon = "1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-native-roots"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots"] }
rustls = "0.23"
serde = "1"
serde_json = "1"
Expand All @@ -46,4 +46,4 @@ walkdir = "2"
assert_cmd = "2"
futures = "0.3"
futures-core = "0.3"
httptest = "0.15"
httptest = "0.16"

0 comments on commit 394a152

Please sign in to comment.