-
-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathdeny.toml
More file actions
66 lines (57 loc) · 2.07 KB
/
Copy pathdeny.toml
File metadata and controls
66 lines (57 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# cargo-deny configuration. See https://embarkstudios.github.io/cargo-deny/
#
# Run `cargo deny check` to validate; runs in `just rs check` and `just rs ci`.
[graph]
all-features = true
[advisories]
version = 2
yanked = "deny"
ignore = [
# rsa 0.9.x Marvin Attack (RSA private-key timing sidechannel). The
# `rsa` crate is a direct dep of moq-token but is only used for keygen
# and PEM serialization of JWK components. JWT signing/verification
# itself runs through `jsonwebtoken` backed by `aws-lc-rs` (constant
# time), so the vulnerable code path is not exercised. Drop the ignore
# when rustcrypto/RSA publishes a constant-time fix.
"RUSTSEC-2023-0071",
# foundations (Cloudflare) pins serde_yaml 0.8 which uses yaml-rust 0.4.
# Reachable via tokio-quiche -> web-transport-quiche -> moq-native
# (quiche feature). Awaits upstream migration to serde_yaml 0.9+.
"RUSTSEC-2024-0320",
# gstreamer 0.23 pulls paste (proc-macro). gstreamer 0.25 drops it but
# needs Rust 1.92, above the 1.91 workspace MSRV. Build-time only.
"RUSTSEC-2024-0436",
# ttf-parser is unmaintained, with no upgrade available. Reachable only via
# winit -> sctk-adwaita -> ab_glyph, which parses the system font used to
# draw Wayland client-side decorations for `moq play`. Dropping winit's
# `wayland-csd-adwaita` feature would remove it, at the cost of a titlebar
# on GNOME. Awaits sctk-adwaita migrating to skrifa.
"RUSTSEC-2026-0192",
]
[licenses]
version = 2
confidence-threshold = 0.9
allow = [
"0BSD",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"CDLA-Permissive-2.0", # webpki-roots cert bundle
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Unlicense",
"Zlib",
]
[bans]
multiple-versions = "warn"
wildcards = "deny"
# Path/workspace deps don't carry versions; that's fine for intra-workspace use.
allow-wildcard-paths = true
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]