Skip to content
Merged
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
8 changes: 7 additions & 1 deletion .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,10 @@
# This is a transitive dependency from sqlx-mysql (via sea-orm's sqlx feature).
# Since this project uses PostgreSQL (not MySQL), this vulnerability does not
# affect the application. Ignoring until an upstream fix is available.
ignore = ["RUSTSEC-2023-0071"]
# RUSTSEC-2026-0235: rkyv archive validation out-of-bounds reads
# Status: Fixed only in rkyv >=0.8.17 (no patched 0.7.x release)
# The workspace's only rkyv 0.7 entry comes from rust_decimal's OPTIONAL
# legacy `rkyv` feature, which this project never enables — the crate is
# locked but never compiled. rkyv 0.8.x is kept at >=0.8.17 (patched).
# Remove when rust_decimal drops its optional rkyv 0.7 dependency.
ignore = ["RUSTSEC-2023-0071", "RUSTSEC-2026-0235"]
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ ignore = [
# proc-macro-error2 unmaintained. Transitive proc-macro dependency.
"RUSTSEC-2026-0173",
]
# NOTE: RUSTSEC-2026-0235 (rkyv OOB reads) is ignored in .cargo/audit.toml
# only: cargo-deny resolves the real feature graph and never sees the
# vulnerable rkyv 0.7 (rust_decimal's unused optional legacy feature),
# while cargo-audit scans the raw lockfile and does.

[licenses]
# Allow common open-source licenses used in the Rust ecosystem
Expand Down
Loading