Skip to content

Commit 0ad621d

Browse files
committed
fix deny
1 parent 2e1e0eb commit 0ad621d

3 files changed

Lines changed: 16 additions & 27 deletions

File tree

1

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Adding #[must_use] attributes to ~50+ methods
2+
Adding # Errors sections to ~30+ functions
3+
Fixing format string inlining in ~20+ places
4+
Updating pub(crate) to pub in ~15+ places
5+
Breaking long doc comments in ~10+ places
6+
Fixing literal formatting in ~5+ places

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deny.toml

Lines changed: 8 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,21 @@
33
[bans]
44
multiple-versions = "deny"
55
skip = [
6-
"wasi",
7-
"getrandom",
8-
"windows-sys",
9-
"core-foundation",
10-
"security-framework",
11-
"windows-targets",
12-
"windows_aarch64_gnullvm",
13-
"windows_aarch64_msvc",
14-
"windows_i686_gnu",
15-
"windows_i686_gnullvm",
16-
"windows_i686_msvc",
17-
"windows_x86_64_gnu",
18-
"windows_x86_64_gnullvm",
19-
"windows_x86_64_msvc"
6+
"windows-link", # Allow multiple versions due to chrono dependency conflicts
207
]
218

229
[sources]
2310
unknown-registry = "deny"
2411
unknown-git = "deny"
2512

26-
[licenses]
27-
exceptions = [
28-
{ name = "ring", allow = ["LicenseRef-ring"] } # ring uses a specific BoringSSL license that does not match the standard text so requires allowing the specific hash
13+
[[licenses.clarify]]
14+
name = "ring"
15+
expression = "MIT AND ISC AND OpenSSL"
16+
license-files = [
17+
{ path = "LICENSE", hash = 0xbd0eed23 }
2918
]
19+
20+
[licenses]
3021
unused-allowed-license = "allow"
3122
confidence-threshold = 0.93
3223
allow = [
@@ -38,11 +29,3 @@ allow = [
3829
"ISC",
3930
"Unicode-3.0",
4031
]
41-
42-
43-
[[licenses.clarify]]
44-
name = "ring"
45-
expression = "LicenseRef-ring"
46-
license-files = [
47-
{ path = "LICENSE", hash = 0xbd0eed23 },
48-
]

0 commit comments

Comments
 (0)