-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathdeny.toml
More file actions
17 lines (14 loc) · 663 Bytes
/
deny.toml
File metadata and controls
17 lines (14 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# https://embarkstudios.github.io/cargo-deny/
#
# cargo-deny checks our dependency tree for issues.
# Run locally with: cargo deny check bans
[graph]
all-features = true
[bans]
multiple-versions = "allow"
[advisories]
unmaintained = "workspace"
ignore = [
{ id = "RUSTSEC-2026-0097", reason = "Upgrading the `rand` crate to a newer version requires `grit-pattern-matcher` to also update the dependency. Also, the current version of Boa depends on a different version of `rand`, and its also affected by this advisory. It's more work than it's worth to fix it right now." },
{ id = "RUSTSEC-2026-0173", reason = "Currently there's no alternative" }
]