Skip to content

Commit 668f3a1

Browse files
committed
CI: deny 'owning-ref' crate
1 parent b5f5c66 commit 668f3a1

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

tools/deny.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,16 @@ allow = [
165165
#{ name = "ansi_term", version = "=0.11.0" },
166166
]
167167
# List of crates to deny
168+
# Each entry the name of a crate and a version range. If version is
169+
# not specified, all versions will be matched.
170+
#{ name = "ansi_term", version = "=0.11.0" },
171+
#
172+
# Wrapper crates can optionally be specified to allow the crate when it
173+
# is a direct dependency of the otherwise banned crate
174+
#{ name = "ansi_term", version = "=0.11.0", wrappers = [] },
168175
deny = [
169-
# Each entry the name of a crate and a version range. If version is
170-
# not specified, all versions will be matched.
171-
#{ name = "ansi_term", version = "=0.11.0" },
172-
#
173-
# Wrapper crates can optionally be specified to allow the crate when it
174-
# is a direct dependency of the otherwise banned crate
175-
#{ name = "ansi_term", version = "=0.11.0", wrappers = [] },
176+
# unmaintained since Feb 20 + https://github.com/noamtashma/owning-ref-unsoundness
177+
{ name = "owning_ref" },
176178
]
177179
# Certain crates/versions that will be skipped when doing duplicate detection.
178180
skip = [

0 commit comments

Comments
 (0)