fix(deps): allow MIT-0, allow CC0-1.0 exceptions (#2212)
* fix(deps): allow MIT-0, allow CC0-1.0 exceptions * ci: do not fail fast on deny
This commit is contained in:
parent
fbf8acb6a5
commit
20375e291b
|
@ -19,6 +19,7 @@ jobs:
|
|||
name: deny (${{ matrix.checks }})
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
checks:
|
||||
- advisories
|
||||
|
|
|
@ -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",
|
||||
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue