1
- targets = [
2
- { triple = " x86_64-unknown-linux-gnu" },
3
- { triple = " x86_64-pc-windows-gnu" },
4
- { triple = " x86_64-apple-darwin" },
5
- { triple = " aarch64-apple-darwin" }
6
- ]
7
-
8
1
# This section is considered when running `cargo deny check advisories`
9
2
# More documentation for the advisories section can be found here:
10
3
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
11
4
[advisories ]
5
+ version = 2 # https://github.com/EmbarkStudios/cargo-deny/pull/611
12
6
db-path = " ~/.cargo/advisory-db"
13
7
db-urls = [" https://github.com/rustsec/advisory-db" ]
14
8
15
- vulnerability = " deny"
16
- unmaintained = " warn"
17
- yanked = " deny"
18
- notice = " deny"
19
-
20
9
ignore = [
21
10
# Ignored audit issues. This list should be kept short, and effort should be
22
11
# put into removing items from the list.
@@ -31,8 +20,7 @@ ignore = [
31
20
# More documentation for the licenses section can be found here:
32
21
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
33
22
[licenses ]
34
- # The lint level for crates which do not have a detectable license
35
- unlicensed = " deny"
23
+ version = 2 # https://github.com/EmbarkStudios/cargo-deny/pull/611
36
24
37
25
# Adding a license here has to be done carefully. Should not be changed
38
26
# by individual developers.
@@ -45,16 +33,12 @@ allow = [
45
33
" BSD-3-Clause" ,
46
34
" BSD-2-Clause" ,
47
35
" CC0-1.0" ,
36
+ " MPL-2.0" ,
48
37
# https://github.com/briansmith/ring/issues/902
49
38
" LicenseRef-ring" ,
50
39
" Unicode-DFS-2016"
51
40
]
52
41
53
- deny = []
54
-
55
- copyleft = " allow"
56
- allow-osi-fsf-free = " neither"
57
- default = " deny"
58
42
confidence-threshold = 0.8
59
43
60
44
exceptions = []
@@ -70,7 +54,6 @@ license-files = [
70
54
ignore = false
71
55
registries = []
72
56
73
-
74
57
# This section is considered when running `cargo deny check bans`.
75
58
# More documentation about the 'bans' section can be found here:
76
59
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
@@ -90,7 +73,6 @@ deny = [
90
73
skip = []
91
74
skip-tree = []
92
75
93
-
94
76
# This section is considered when running `cargo deny check sources`.
95
77
# More documentation about the 'sources' section can be found here:
96
78
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
@@ -106,3 +88,11 @@ allow-git = []
106
88
[sources .allow-org ]
107
89
# 1 or more github.com organizations to allow git sources for
108
90
github = [" mullvad" ]
91
+
92
+ [graph ]
93
+ targets = [
94
+ { triple = " x86_64-unknown-linux-gnu" },
95
+ { triple = " x86_64-pc-windows-gnu" },
96
+ { triple = " x86_64-apple-darwin" },
97
+ { triple = " aarch64-apple-darwin" }
98
+ ]
0 commit comments