From 45589781ba34333d93896d5b237ec33bf88f5c4e Mon Sep 17 00:00:00 2001 From: Xiretza Date: Sat, 10 Feb 2024 22:04:50 +0000 Subject: [PATCH] Add cargo-deny config --- deny.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 deny.toml diff --git a/deny.toml b/deny.toml new file mode 100644 index 0000000..762a700 --- /dev/null +++ b/deny.toml @@ -0,0 +1,14 @@ +[licenses] +copyleft = "allow" +allow-osi-fsf-free = "both" +allow = [ + "OpenSSL", + "Unicode-DFS-2016", +] + +[[licenses.clarify]] +name = "ring" +expression = "MIT AND ISC AND OpenSSL" +license-files = [ + { path = "LICENSE", hash = 0xbd0eed23 } +]