-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathaudit.toml
More file actions
18 lines (16 loc) · 828 Bytes
/
Copy pathaudit.toml
File metadata and controls
18 lines (16 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# cargo-audit configuration for the RVM workspace.
# See: https://github.com/rustsec/rustsec/tree/main/cargo-audit
[advisories]
# RUSTSEC-2024-0436: `paste` crate is unmaintained.
# This is a *transitive* warning from a deeply nested optional dependency:
# rvm-gpu (optional cuda-rust-wasm feature) -> wgpu -> wgpu-hal -> metal -> paste
# The workspace itself does not depend on `paste` and the GPU feature is
# disabled by default (no `webgpu`/`metal` feature flag in any default build).
# The `paste` crate has no known security vulnerability -- only maintenance
# concerns. Suppressed until cuda-rust-wasm or wgpu ships a compatible release
# that removes the metal -> paste dependency.
ignore = ["RUSTSEC-2024-0436"]
informational_warnings = ["unmaintained", "unsound", "notice"]
[output]
show_tree = true
quiet = false