Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 10addb2

Browse files
authored
ci: Add rocksdb to ignore audit (for now) (#3458)
1 parent 6f2fc99 commit 10addb2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ci/do-audit.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,14 @@ cargo_audit_ignores=(
2323

2424
# memmap is officially deprecated/unmaintained, used by honggfuzz
2525
#
26-
# Blcoked on honggfuzz, fixed in https://github.com/rust-fuzz/honggfuzz-rs/pull/55
26+
# Blocked on honggfuzz, fixed in https://github.com/rust-fuzz/honggfuzz-rs/pull/55
2727
# need to update honggfuzz dependency whenever the next version is released
2828
--ignore RUSTSEC-2020-0077
29+
30+
# rocksdb: Out-of-bounds read when opening multiple column families with TTL
31+
#
32+
# Blocked on Solana 1.11, fixed in https://github.com/solana-labs/solana/pull/26949
33+
# Once we update to 1.11, we can remove this
34+
--ignore RUSTSEC-2022-0046
2935
)
3036
cargo +"$rust_stable" audit "${cargo_audit_ignores[@]}"

0 commit comments

Comments
 (0)