Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore RUSTSEC-2020-0023 advisory for now #573

Merged
merged 1 commit into from
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,21 @@ allow = [
"Unlicense",
"Zlib",
]

[advisories]
vulnerability = "deny"
unmaintained = "deny"
notice = "deny"

ignore = [
# imageproc depends on rulinalg 0.4.2 and has a known vulnerability and is not maintained.
# We can't replace it ourselves however (patched versions aren't allowed on crates.io without forking, which
# would mean we would have to maintain both a rulinalg and imageproc fork). The author of this project doesn't have
# the bandwidth to maintain those, but offered to help imageproc where it can. That is for now
# unfortunately the most we can do.
# Searching the for invocation of the API in imageproc shows that imageproc at least doesn't directly call the vulnerable code.
# It may however indirectly be called by some other library or internally by rulinalg (we haven't checked the complete graph
# for usages).
# For now, we will wait for imageproc (issue: https://github.com/image-rs/imageproc/issues/426)
"RUSTSEC-2020-0023",
]