We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9169ea9 commit 780b04aCopy full SHA for 780b04a
1 file changed
deny.toml
@@ -7,7 +7,13 @@ all-features = true
7
# Fail on any unmaintained or vulnerable advisory; allow yanked crates as a
8
# warning since they may show up transiently.
9
yanked = "warn"
10
-ignore = []
+ignore = [
11
+ # `paste` is archived but still pulled in by ratatui's dependency tree.
12
+ # It's a pure proc-macro crate (no runtime, no I/O, no security surface),
13
+ # and ratatui upstream tracks the migration. Re-evaluate when ratatui
14
+ # ships a release that drops it.
15
+ "RUSTSEC-2024-0436",
16
+]
17
18
[bans]
19
multiple-versions = "warn"
0 commit comments