diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-09-29 14:00:42 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-09-29 16:13:24 +0200 |
commit | e527f5f065bc384515929ccec497d66ad85830d1 (patch) | |
tree | e5a0b9fa9a48edf3e5b1014f8c1c1e8697627263 /deny.toml | |
parent | dcece252a2a5b98bbb69ff6d3509d0673c8ca64c (diff) | |
download | askama-e527f5f065bc384515929ccec497d66ad85830d1.tar.gz askama-e527f5f065bc384515929ccec497d66ad85830d1.tar.bz2 askama-e527f5f065bc384515929ccec497d66ad85830d1.zip |
Add audit job in CI workflow
Diffstat (limited to 'deny.toml')
-rw-r--r-- | deny.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/deny.toml b/deny.toml new file mode 100644 index 0000000..c5d2843 --- /dev/null +++ b/deny.toml @@ -0,0 +1,10 @@ +[licenses] +allow-osi-fsf-free = "either" +copyleft = "warn" +exceptions = [{ allow = ["ISC", "MIT", "OpenSSL"], name = "ring" }] +private = { ignore = true } + +[[licenses.clarify]] +name = "ring" +expression = "ISC AND MIT AND OpenSSL" +license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }] |