@@ -42,7 +42,7 @@ targets = [
42
42
# If true, metadata will be collected with `--all-features`. Note that this can't
43
43
# be toggled off if true, if you want to conditionally enable `--all-features` it
44
44
# is recommended to pass `--all-features` on the cmd line instead
45
- all-features = false
45
+ all-features = true
46
46
# If true, metadata will be collected with `--no-default-features`. The same
47
47
# caveat with `all-features` applies
48
48
no-default-features = false
@@ -64,9 +64,9 @@ feature-depth = 1
64
64
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
65
65
[advisories ]
66
66
# The path where the advisory databases are cloned/fetched into
67
- # db-path = "$CARGO_HOME /advisory-dbs"
67
+ db-path = " ~/.cargo /advisory-dbs"
68
68
# The url(s) of the advisory databases to use
69
- # db-urls = ["https://github.com/rustsec/advisory-db"]
69
+ db-urls = [" https://github.com/rustsec/advisory-db" ]
70
70
# A list of advisory IDs to ignore. Note that ignored advisories will still
71
71
# output a note when they are encountered.
72
72
ignore = [
@@ -85,13 +85,17 @@ ignore = [
85
85
# More documentation for the licenses section can be found here:
86
86
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
87
87
[licenses ]
88
+ unlicensed = " deny"
88
89
# List of explicitly allowed licenses
89
90
# See https://spdx.org/licenses/ for list of possible licenses
90
91
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
91
92
allow = [
92
- # "MIT",
93
- # "Apache-2.0",
94
- # "Apache-2.0 WITH LLVM-exception",
93
+ " MIT" ,
94
+ " Apache-2.0" ,
95
+ " BSD-3-Clause" ,
96
+ " Apache-2.0 WITH LLVM-exception" ,
97
+ " Unicode-DFS-2016" ,
98
+ " ISC" ,
95
99
]
96
100
# The confidence threshold for detecting a license from license text.
97
101
# The higher the value, the more closely the license text must be to the
@@ -228,8 +232,8 @@ allow-git = []
228
232
229
233
[sources .allow-org ]
230
234
# 1 or more github.com organizations to allow git sources for
231
- github = [" " ]
235
+ # github = [""]
232
236
# 1 or more gitlab.com organizations to allow git sources for
233
- gitlab = [" " ]
237
+ # gitlab = [""]
234
238
# 1 or more bitbucket.org organizations to allow git sources for
235
- bitbucket = [" " ]
239
+ # bitbucket = [""]
0 commit comments