Skip to content

Commit b714a98

Browse files
committed
Towards satisfying cargo-deny
1 parent 1abc301 commit b714a98

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ env_logger = { version = "0.11.3", default-features = false, features = ["auto-c
7777
log = "0.4.21"
7878

7979
# Tracing / Profiling
80-
tracy-client = { version = "0.18.0", optional = true } # https://github.com/nagisa/rust_tracy_client/tree/main/tracy-client -> tracy client 0.11.1
80+
tracy-client = { version = "0.18.3", optional = true } # https://github.com/nagisa/rust_tracy_client/tree/main/tracy-client -> tracy client 0.11.1
8181
profiling = { version = "1.0.16", default-features = false }
8282
wgpu-profiler = { version = "0.19.0", features = ["tracy"] }
8383

deny.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ feature-depth = 1
7070
# A list of advisory IDs to ignore. Note that ignored advisories will still
7171
# output a note when they are encountered.
7272
ignore = [
73+
{ id = "RUSTSEC_2024-0436", reason = "Even the most recent WGPU doesn't fix this yet, but metal itself is also deprecated" },
74+
{ id = "RUSTSEC-2025-0056", reason = "No safe upgrade is available, used by multiple dependencies" },
7375
#"RUSTSEC-0000-0000",
7476
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
7577
#"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
@@ -97,7 +99,9 @@ allow = [
9799
"MIT",
98100
"MIT-0",
99101
"Unicode-DFS-2016",
100-
"Zlib"
102+
"Zlib",
103+
# https://softwareengineering.stackexchange.com/a/317946
104+
"MPL-2.0",
101105
#"Apache-2.0 WITH LLVM-exception",
102106
]
103107
# The confidence threshold for detecting a license from license text.

0 commit comments

Comments
 (0)