-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
56 lines (50 loc) · 1.58 KB
/
deny.toml
File metadata and controls
56 lines (50 loc) · 1.58 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
# SPDX-License-Identifier: Apache-2.0
# © James Ross Ω FLYING•ROBOTS <https://github.com/flyingrobots>
# cargo-deny configuration for Echo workspace
[licenses]
# Explicit allowlist of common permissive licenses used in our deps.
# Note: Cargo.lock does not record license metadata; cargo-deny evaluates
# license expressions from registry metadata (crates.io / git) plus license
# files when needed.
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"ISC",
"MIT",
"MIT-0",
"Unicode-3.0",
"Unlicense",
"Zlib",
"OFL-1.1",
"MPL-2.0",
"OpenSSL",
"Ubuntu-font-1.0",
# Required by minicbor (via echo-scene-codec).
"BlueOak-1.0.0",
]
# Modernized for cargo-deny >=0.14.21 (PR #611):
# - Removed deprecated keys `copyleft` and `unlicensed`.
# Copyleft licenses remain effectively denied by virtue of the explicit
# `allow = [...]` list above.
# Crates missing a license will be flagged by cargo-deny as issues; our
# workspace crates all declare licenses, so no explicit `unlicensed` policy
# is required here.
# Confidence threshold for license text detection (default 0.8)
confidence-threshold = 0.8
[bans]
# Warn on multiple versions, but don't fail CI for now.
multiple-versions = "warn"
wildcards = "deny"
[advisories]
ignore = [
# wgpu transitively depends on paste 1.0.15; upstream is unmaintained but
# tracked in wgpu#5185. Safe to ignore until wgpu publishes a replacement.
"RUSTSEC-2024-0436",
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"