From 0da87c92d0a360105b69a8516ea0345595ec9069 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: May 22 2024 22:25:09 +0000 Subject: add basic config file for cargo-deny --- diff --git a/deny.toml b/deny.toml new file mode 100644 index 0000000..d582e39 --- /dev/null +++ b/deny.toml @@ -0,0 +1,22 @@ +[output] +feature-depth = 1 + +[advisories] +ignore = [] + +[licenses] +allow = [ + "MIT", + "Apache-2.0", + "Unicode-DFS-2016", +] +exceptions = [] + +[bans] +multiple-versions = "warn" +wildcards = "allow" +highlight = "all" +workspace-default-features = "allow" +external-default-features = "allow" +allow = [] +deny = []