Skip to content

Commit f537ef4

Browse files
committed
chore: Add backoff advisory
1 parent 6ca806b commit f537ef4

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

deny.toml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ ignore = [
2929
#
3030
# TODO: Remove after https://github.com/kube-rs/kube/pull/1653 is released
3131
"RUSTSEC-2024-0384",
32+
33+
# Advisory: https://rustsec.org/advisories/RUSTSEC-2025-0012
34+
# The [backoff](https://crates.io/crates/backoff) crate is no longer actively maintained. For exponential backoffs/retrying, you can use the [backon](https://crates.io/crates/backon) crate.
35+
# Announcement: https://github.com/ihrwein/backoff/issues/66
36+
#
37+
# TODO: Remove after https://github.com/kube-rs/kube/pull/1653 is released
38+
"RUSTSEC-2025-0012",
39+
3240
]
3341

3442
[bans]
@@ -47,7 +55,7 @@ allow = [
4755
"LicenseRef-webpki",
4856
"MIT",
4957
"MPL-2.0",
50-
"OpenSSL", # Needed for the ring and/or aws-lc-sys crate. See https://github.com/stackabletech/operator-templating/pull/464 for details
58+
"OpenSSL", # Needed for the ring and/or aws-lc-sys crate. See https://github.com/stackabletech/operator-templating/pull/464 for details
5159
"Unicode-3.0",
5260
"Unicode-DFS-2016",
5361
"Zlib",
@@ -58,16 +66,12 @@ private = { ignore = true }
5866
[[licenses.clarify]]
5967
name = "ring"
6068
expression = "LicenseRef-ring"
61-
license-files = [
62-
{ path = "LICENSE", hash = 0xbd0eed23 },
63-
]
69+
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
6470

6571
[[licenses.clarify]]
6672
name = "webpki"
6773
expression = "LicenseRef-webpki"
68-
license-files = [
69-
{ path = "LICENSE", hash = 0x001c7e6c },
70-
]
74+
license-files = [{ path = "LICENSE", hash = 0x001c7e6c }]
7175

7276
[sources]
7377
unknown-registry = "deny"

0 commit comments

Comments
 (0)