Skip to content

Commit

Permalink
build: add cargo deny clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Aug 28, 2024
1 parent 46dab7d commit b513b02
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,20 +98,20 @@ exceptions = []
# Some crates don't have (easily) machine readable licensing information,
# adding a clarification entry for it allows you to manually specify the
# licensing information
# [[licenses.clarify]]
[[licenses.clarify]]
# The package spec the clarification applies to
# crate = "ring"
crate = "ring"
# The SPDX expression for the license requirements of the crate
# expression = "MIT AND ISC AND OpenSSL"
expression = "MIT AND ISC AND OpenSSL"
# One or more files in the crate's source used as the "source of truth" for
# the license expression. If the contents match, the clarification will be used
# when running the license check, otherwise the clarification will be ignored
# and the crate will be checked normally, which may produce warnings or errors
# depending on the rest of your configuration
# license-files = [
# Each entry is a crate relative path, and the (opaque) hash of its contents
# { path = "LICENSE", hash = 0xbd0eed23 }
# ]
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 },
]

[licenses.private]
# If true, ignores workspace crates that aren't published, or are only
Expand Down

0 comments on commit b513b02

Please sign in to comment.