Skip to content

Commit

Permalink
chore: fix deny checks (#6847)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Jan 18, 2024
1 parent 41242d4 commit 8fc9f36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 5 additions & 13 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ vulnerability = "deny"
unmaintained = "warn"
yanked = "warn"
notice = "warn"
ignore = [
"RUSTSEC-2020-0071", # https://rustsec.org/advisories/RUSTSEC-2020-0071
]
ignore = []

# This section is considered when running `cargo deny check bans`.
# More documentation about the 'bans' section can be found here:
Expand All @@ -24,9 +22,7 @@ multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
# List of crates to deny
deny = [
{ name = "openssl" },
]
deny = [{ name = "openssl" }]
# Certain crates/versions that will be skipped when doing duplicate detection.
skip = []
# Similarly to `skip` allows you to skip certain crates during duplicate
Expand Down Expand Up @@ -82,16 +78,12 @@ exceptions = [
name = "unicode-ident"
version = "*"
expression = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
license-files = [
{ path = "LICENSE-UNICODE", hash = 0x3fb01745 }
]
license-files = [{ path = "LICENSE-UNICODE", hash = 0x3fb01745 }]
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]

# This section is considered when running `cargo deny check sources`.
# More documentation about the 'sources' section can be found here:
Expand All @@ -102,4 +94,4 @@ license-files = [
unknown-registry = "warn"
# Lint level for what to happen when a crate from a git repository that is not
# in the allow list is encountered
unknown-git = "allow"
unknown-git = "allow"

0 comments on commit 8fc9f36

Please sign in to comment.