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

Temp. ignore thread_local 1.1.3 security warning #2788

Merged
merged 2 commits into from Jan 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions ci/do-audit.sh
Expand Up @@ -26,5 +26,13 @@ cargo_audit_ignores=(
# Blcoked on honggfuzz, fixed in https://github.com/rust-fuzz/honggfuzz-rs/pull/55
# need to update honggfuzz dependency whenever the next version is released
--ignore RUSTSEC-2020-0077

# Data race in `Iter` and `IterMut` in thread_local 1.1.3 upstream dependencies
#
# Date: 2022-01-23
# https://rustsec.org/advisories/RUSTSEC-2022-0006
# Solution: Upgrade to >=1.1.4
# Ingored untill fixed in solana sdk
--ignore RUSTSEC-2022-0006
)
cargo +"$rust_stable" audit "${cargo_audit_ignores[@]}"