solana-with-rpc-optimizations/ci/do-audit.sh

17 lines
336 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
here="$(dirname "$0")"
src_root="$(readlink -f "${here}/..")"
cd "${src_root}"
cargo_audit_ignores=(
# Potential segfault in the time crate
#
# Blocked on chrono updating `time` to >= 0.2.23
--ignore RUSTSEC-2020-0071
)
scripts/cargo-for-all-lock-files.sh stable audit "${cargo_audit_ignores[@]}"