Skip to content

Commit 09715d3

Browse files
committed
deny.toml: allow some duplicates
1 parent 614c511 commit 09715d3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

deny.toml

+10
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ ignore = [
2828
"RUSTSEC-2021-0139",
2929
# No use of externally-provided WebPKI chains.
3030
"RUSTSEC-2023-0052",
31+
# No use of X509
32+
"RUSTSEC-2023-0072",
3133
]
3234

3335
# Deny multiple versions unless explicitly skipped.
@@ -56,6 +58,14 @@ version = "0.9.9"
5658
name = "heck"
5759
version = "0.3.1"
5860

61+
# tower(0.4.13) => indexmap(1.9.3) => hashbrown(0.12.3)
62+
[[bans.skip]]
63+
name = "indexmap"
64+
version = "1.9.3"
65+
[[bans.skip]]
66+
name = "hashbrown"
67+
version = "0.12.3"
68+
5969
# Various dependencies use windows-sys(0.42.x)
6070
[[bans.skip]]
6171
name = "windows-sys"

0 commit comments

Comments
 (0)