From 02526c3339d5a785dcb2ade95d36ed68edcdc7d5 Mon Sep 17 00:00:00 2001 From: Conrado Gouvea Date: Tue, 9 Nov 2021 20:28:56 -0300 Subject: [PATCH] deny.toml: skip orchard and equihash instead of zcash_primitives (#3044) Co-authored-by: Deirdre Connolly --- deny.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 60d2192d..27db86f5 100644 --- a/deny.toml +++ b/deny.toml @@ -41,7 +41,10 @@ skip-tree = [ { name = "fpe", version = "=0.4.0" }, # ticket #2982: librustzcash and orchard git versions - { name = "zcash_primitives", version = "=0.5.0" }, + # Note that the equihash duplication is probably because `zcash_primitives` + # (which imports it with a path import) is being imported as a git dependency. + { name = "equihash", version = "=0.1.0" }, + { name = "orchard", version = "=0.0.0" }, # ticket #2983: criterion dependencies { name = "criterion", version = "=0.3.4" },