Skip to content

Commit

Permalink
fix(deps): allow MIT-0, allow CC0-1.0 exceptions (#2212)
Browse files Browse the repository at this point in the history
* fix(deps): allow MIT-0, allow CC0-1.0 exceptions

* ci: do not fail fast on deny
  • Loading branch information
DaniPopes committed Mar 1, 2023
1 parent fbf8acb commit 20375e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deps.yml
Expand Up @@ -19,6 +19,7 @@ jobs:
name: deny (${{ matrix.checks }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
checks:
- advisories
Expand Down
7 changes: 3 additions & 4 deletions deny.toml
Expand Up @@ -38,6 +38,7 @@ unlicensed = "deny"
# [possible values: any SPDX 3.7 short identifier (+ optional exception)].
allow = [
"MIT",
"MIT-0",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
Expand All @@ -58,10 +59,8 @@ exceptions = [
{ allow = ["CC0-1.0"], name = "secp256k1-sys" },
{ allow = ["CC0-1.0"], name = "tiny-keccak" },
{ allow = ["CC0-1.0"], name = "more-asserts" },

# TODO: ethers transitive deps
{ allow = ["GPL-3.0"], name = "fastrlp" },
{ allow = ["GPL-3.0"], name = "fastrlp-derive" },
{ allow = ["CC0-1.0"], name = "trezor-client" },
{ allow = ["CC0-1.0"], name = "constant_time_eq" },
]
#copyleft = "deny"

Expand Down

0 comments on commit 20375e2

Please sign in to comment.