aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--deny.toml11
1 files changed, 10 insertions, 1 deletions
diff --git a/deny.toml b/deny.toml
index 97bda72..2825dbc 100644
--- a/deny.toml
+++ b/deny.toml
@@ -1,6 +1,8 @@
targets = [
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "x86_64-unknown-linux-gnu" },
+ { triple = "x86_64-apple-darwin" },
+ { triple = "aarch64-apple-darwin" },
]
[advisories]
@@ -13,7 +15,14 @@ deny = [
]
[licenses]
-allow = ["MIT", "BSD-3-Clause", "Apache-2.0", "ISC", "Unicode-DFS-2016"]
+allow = [
+ "MIT",
+ "BSD-2-Clause",
+ "BSD-3-Clause",
+ "Apache-2.0",
+ "ISC",
+ "Unicode-DFS-2016",
+]
copyleft = "deny"
exceptions = [
{ name = "ring", allow = ["OpenSSL", "MIT", "ISC"] }