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

Commit 5f3cbc4

Browse files
authored
ci: Reduce audit ignores (#3758)
1 parent 94f78b2 commit 5f3cbc4

File tree

3 files changed

+109
-28
lines changed

3 files changed

+109
-28
lines changed

Cargo.lock

Lines changed: 107 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ci/do-audit.sh

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,9 @@ cd "$(dirname "$0")/.."
55
source ./ci/rust-version.sh stable
66

77
cargo_audit_ignores=(
8-
# failure is officially deprecated/unmaintained
9-
#
10-
# Blocked on multiple upstream crates removing their `failure` dependency.
11-
--ignore RUSTSEC-2020-0036
12-
138
# Potential segfault in the time crate
149
#
15-
# Blocked on chrono and solana_rbpf updating `time` to >= 0.2.23
10+
# Blocked on chrono updating `time` to >= 0.2.23
1611
--ignore RUSTSEC-2020-0071
17-
18-
# chrono: Potential segfault in `localtime_r` invocations
19-
#
20-
# Blocked due to no safe upgrade
21-
# https://github.com/chronotope/chrono/issues/499
22-
--ignore RUSTSEC-2020-0159
23-
24-
# memmap is officially deprecated/unmaintained, used by honggfuzz
25-
#
26-
# Blocked on honggfuzz, fixed in https://github.com/rust-fuzz/honggfuzz-rs/pull/55
27-
# need to update honggfuzz dependency whenever the next version is released
28-
--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
3512
)
3613
cargo +"$rust_stable" audit "${cargo_audit_ignores[@]}"

feature-proposal/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88
edition = "2018"
99

1010
[dependencies]
11-
chrono = "0.4.19"
11+
chrono = "0.4.22"
1212
clap = "2.33.3"
1313
solana-clap-utils = "1.14.4"
1414
solana-cli-config = "1.14.4"

0 commit comments

Comments
 (0)