Skip to content

Commit dc1aae9

Browse files
committed
cargo: update reqwest and http
1 parent bf91e1a commit dc1aae9

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Breaking changes
44

55
* GraphQL support has been updated to use `graphql_client` 0.14.
6+
* The `http` crate has been updated to 1.x.
67

78
# v0.1610.0
89

Cargo.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ client_api = [
2828
]
2929
client_der = ["reqwest/native-tls", "client_api"]
3030
client_pem = ["reqwest/rustls-tls", "client_api"]
31-
minimal_versions = ["void", "openssl", "tempfile", "h2", "mio", "rustls", "bumpalo", "combine"]
31+
minimal_versions = ["void", "openssl", "tempfile", "mio", "rustls", "bumpalo", "combine"]
3232
# This feature is here to aid with `semver-checks` by hiding the known-unstable
3333
# parts of the crate.
3434
_nohooks = []
@@ -40,15 +40,15 @@ derive_builder = "~0.20"
4040
itertools = { version = "~0.12", optional = true }
4141
log = "~0.4.6"
4242
percent-encoding = { version = "^2.0", optional = true }
43-
reqwest = { version = "~0.11.19", features = ["blocking", "json"], default-features = false, optional = true }
43+
reqwest = { version = "~0.12", features = ["blocking", "json"], default-features = false, optional = true }
4444
thiserror = { version = "^1.0.2", optional = true }
4545
async-trait = { version = "~0.1.9", optional = true }
4646
futures-util = { version = "0.3.14", default-features = false, optional = true }
4747

4848
bytes = "^1.0"
4949
chrono = { version = "~0.4.23", default-features = false, features = ["clock", "serde"] }
5050
graphql_client = { version = "~0.14", optional = true }
51-
http = "~0.2.5"
51+
http = "^1"
5252
serde = { version = "~1.0.103", features = ["derive"] }
5353
serde_json = "^1.0.70"
5454
serde_urlencoded = "~0.7"
@@ -64,12 +64,10 @@ void = { version = "^1.0.1", optional = true }
6464
openssl = { version = "~0.10.60", optional = true }
6565
# Required to avoid `remove_dir_all` dependency.
6666
tempfile = { version = "^3.4.0", optional = true }
67-
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0332
68-
h2 = { version = "0.3.26", optional = true }
6967
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0019
7068
mio = { version = "0.8.11", optional = true }
7169
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0336
72-
rustls = { version = "0.21.11", optional = true }
70+
rustls = { version = "0.22.4", optional = true }
7371
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2022-0078
7472
bumpalo = { version = "3.11.1", optional = true }
7573
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0015

0 commit comments

Comments
 (0)