Add deny.toml for cargo-deny

This commit is contained in:
Luke Street 2021-09-02 23:30:05 -04:00
parent 310093b38a
commit acd77da20e
1 changed files with 8 additions and 0 deletions

8
deny.toml Normal file
View File

@ -0,0 +1,8 @@
[licenses]
allow = ["MIT"]
# Exceptions for build-only dependencies
exceptions = [
{ allow = ["Apache-2.0"], name = "clang-sys", version = "*" },
{ allow = ["BSD-3-Clause"], name = "bindgen", version = "*" },
{ allow = ["ISC"], name = "libloading", version = "*" },
]