1
- targets = []
1
+ [graph ]
2
+ # Note: running just `cargo deny check` without a `--target` can result in
3
+ # false positives due to https://github.com/EmbarkStudios/cargo-deny/issues/324
4
+ targets = [
5
+ { triple = " aarch64-apple-darwin" },
6
+ { triple = " aarch64-linux-android" },
7
+ { triple = " i686-pc-windows-gnu" },
8
+ { triple = " i686-pc-windows-msvc" },
9
+ { triple = " x86_64-pc-windows-gnu" },
10
+ { triple = " x86_64-pc-windows-msvc" },
11
+ { triple = " x86_64-unknown-linux-gnu" },
12
+ ]
2
13
all-features = true
3
- no-default-features = false
4
- feature-depth = 1
5
14
6
15
[advisories ]
7
16
db-path = " ~/.cargo/advisory-db"
8
17
db-urls = [" https://github.com/rustsec/advisory-db" ]
9
- vulnerability = " deny"
10
- unmaintained = " warn"
11
- yanked = " warn"
12
- notice = " warn"
13
18
ignore = []
14
19
15
20
[licenses ]
16
- unlicensed = " deny"
17
21
allow = [
18
22
" Apache-2.0" ,
19
23
" Apache-2.0 WITH LLVM-exception" ,
@@ -23,10 +27,6 @@ allow = [
23
27
" MIT" ,
24
28
" Zlib" ,
25
29
]
26
- deny = []
27
- copyleft = " warn"
28
- allow-osi-fsf-free = " neither"
29
- default = " deny"
30
30
confidence-threshold = 0.8
31
31
exceptions = [
32
32
{ name = " unicode-ident" , allow = [
@@ -35,19 +35,24 @@ exceptions = [
35
35
]
36
36
37
37
[bans ]
38
- multiple-versions = " warn "
39
- wildcards = " allow "
38
+ multiple-versions = " deny "
39
+ wildcards = " deny "
40
40
highlight = " all"
41
- workspace-default-features = " allow"
42
- external-default-features = " allow"
43
41
allow = []
44
42
deny = []
45
-
46
- skip = []
43
+ skip = [
44
+ " bitflags:<2" ,
45
+ " quick-xml:<0.37" ,
46
+ " raw-window-handle:<0.6" ,
47
+ " windows-sys:<0.59" ,
48
+ " windows-targets:<0.52" ,
49
+ " windows_i686_gnu:<0.52" ,
50
+ " windows_i686_msvc:<0.52" ,
51
+ " windows_x86_64_gnu:<0.52" ,
52
+ " windows_x86_64_msvc:<0.52" ,
53
+ ]
47
54
skip-tree = []
48
55
49
56
[sources ]
50
- unknown-registry = " warn"
51
- unknown-git = " warn"
52
- allow-registry = [" https://github.com/rust-lang/crates.io-index" ]
53
- allow-git = []
57
+ unknown-registry = " deny"
58
+ unknown-git = " deny"
0 commit comments