-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
57 lines (55 loc) · 2.74 KB
/
deny.toml
File metadata and controls
57 lines (55 loc) · 2.74 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
# SPDX-FileCopyrightText: 2025 Famedly GmbH (info@famedly.com)
#
# SPDX-License-Identifier: CC0-1.0
[licenses]
# List of explicitly allowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
allow = [
"MIT",
"MIT-0",
"Apache-2.0",
"ISC",
"0BSD",
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-3-Clause-Clear",
"BSD-4-Clause",
"CC0-1.0",
"MS-PL",
"Zlib",
]
# Do not warn if we allow a license not used by any crate in the dependency graph
unused-allowed-license = "allow"
# The confidence threshold for detecting a license from license text.
# The higher the value, the more closely the license text must be to the
# canonical license text of a valid SPDX license file.
# [possible values: any between 0.0 and 1.0].
confidence-threshold = 0.95
exceptions = [
{ crate = "unicode-ident", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_locale_core", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "potential_utf", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "yoke", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "yoke-derive", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "writeable", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "tinystr", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "litemap", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_provider_macros", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_provider", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_properties_data", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_properties", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_normalizer_data", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_normalizer", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_locid_transform_data", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_locid_transform", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_locid", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "icu_collections", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "zerofrom", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "zerofrom-derive", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "zerovec", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "zerovec-derive", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "zerotrie", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
{ crate = "aws-lc-sys", allow = ["OpenSSL"] },
{ crate = "webpki-root-certs", allow = ["CDLA-Permissive-2.0"] }
]