Skip to content

Commit bf91e1a

Browse files
committed
cargo: update mindeps floor dependencies
1 parent de8b473 commit bf91e1a

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,7 @@ clippy-features:build:
9898
.cargo_audit_ignore:
9999
variables:
100100
# Ignored advisories
101-
#
102-
# Use-after-free due to a lifetime error in `Vec::into_iter()`
103-
# https://rustsec.org/advisories/RUSTSEC-2022-0078
104-
#
105-
# Ascii allows out-of-bounds array indexing in safe code (mindeps)
106-
# https://rustsec.org/advisories/RUSTSEC-2023-0015
107-
CARGO_AUDIT_ARGS: --ignore RUSTSEC-2022-0078 --ignore RUSTSEC-2023-0015
101+
CARGO_AUDIT_ARGS: ""
108102

109103
semver-checks:prep:
110104
extends:

Cargo.toml

Lines changed: 5 additions & 5 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", "memoffset", "mio", "rustls", "rustls-webpki"]
31+
minimal_versions = ["void", "openssl", "tempfile", "h2", "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 = []
@@ -66,14 +66,14 @@ openssl = { version = "~0.10.60", optional = true }
6666
tempfile = { version = "^3.4.0", optional = true }
6767
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0332
6868
h2 = { version = "0.3.26", optional = true }
69-
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0045
70-
memoffset = { version = "0.6.2", optional = true }
7169
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0019
7270
mio = { version = "0.8.11", optional = true }
73-
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0052
74-
rustls-webpki = { version = "0.101.4", optional = true }
7571
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2024-0336
7672
rustls = { version = "0.21.11", optional = true }
73+
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2022-0078
74+
bumpalo = { version = "3.11.1", optional = true }
75+
# Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0015
76+
combine = { version = "3.6.2", optional = true }
7777

7878
[dev-dependencies]
7979
itertools = { version = "~0.12" }

0 commit comments

Comments
 (0)