From 1bbf9d2d82777da8d8b0e1e31bb19962fab41cfc Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 25 Oct 2022 02:05:56 +0200 Subject: [PATCH] chore: clarify ring (#129) --- deny.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index c3aea6917..61a9d4849 100644 --- a/deny.toml +++ b/deny.toml @@ -42,8 +42,10 @@ allow = [ "BSD-2-Clause", "BSD-3-Clause", "ISC", - "Unicode-DFS-2016" + "Unicode-DFS-2016", + "OpenSSL" ] + # Allow 1 or more licenses on a per-crate basis, so that particular licenses # aren't accepted for every possible crate as with the normal allow list exceptions = [ @@ -53,6 +55,7 @@ exceptions = [ { allow = ["CC0-1.0"], name = "secp256k1" }, { allow = ["CC0-1.0"], name = "secp256k1-sys" }, { allow = ["CC0-1.0"], name = "tiny-keccak" }, + { allow = ["CC0-1.0"], name = "more-asserts" }, # TODO: temporarily allow libmdx { allow = ["GPL-3.0"], name = "libmdbx" }, @@ -72,6 +75,13 @@ expression = "(MIT OR Apache-2.0) AND Unicode-DFS-2016" license-files = [ { path = "LICENSE-UNICODE", hash = 0x3fb01745 } ] +[[licenses.clarify]] +name = "ring" +version = "*" +expression = "OpenSSL" +license-files = [ + { path = "LICENSE", hash = 0xbd0eed23 } +] # This section is considered when running `cargo deny check sources`. # More documentation about the 'sources' section can be found here: