Skip to content
Open
Show file tree
Hide file tree
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
11 changes: 8 additions & 3 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ ignore = [
# It cannot be a security liability in production, considering it only provides bindings to the OS X kernel.
"RUSTSEC-2020-0168",

# older versions of parking-lot are vulnerable, but used by reed-solomon-erasure.
"RUSTSEC-2020-0070",

# proc-macro-error is unmaintained, but hard to replace right now (via dynasm).
# Follow https://github.com/Kyuuhachi/syn_derive/issues/4
"RUSTSEC-2024-0370",
Expand Down Expand Up @@ -38,4 +35,12 @@ ignore = [
# and nearcore has no custom `log::Log` impl (logging goes through tracing).
# Fixed in rand >= 0.9.3 / >= 0.10.1; 0.8.x has no patch and 0.7.3/0.9.0 are transitive.
"RUSTSEC-2026-0097",

# RUSTSEC-2026-0186: memmap2 unsoundness is confined to advise_range/flush_range/
# flush_async_range/unchecked_advise_range. dynasmrt 2.0 (its only consumer here, via
# the near-vm singlepass JIT; the wasmtime path does not use dynasmrt) calls none of
# these, only map_anon/make_exec/make_mut. The fix is in memmap2 >= 0.9.11, unreachable
# without a breaking dynasmrt 2.0 -> 3.0 upgrade of the x86-64 emitter.
# TODO: remove this entry when near-vm is deprecated in favor of the wasmtime path.
"RUSTSEC-2026-0186",
]
Loading
Loading