From ef1e6f084b656a997dddd3bfebe9f9cc9534d342 Mon Sep 17 00:00:00 2001 From: James Nugent Date: Mon, 25 Nov 2019 17:40:11 +0000 Subject: [PATCH] Temporarily allow duplicate crossbeam-queue crates `crossbeam-queue` is currently brought in both by Rayon (up to date v0.2.0) and Hyper's dependency chain (0.1.x). Since Hyper is in the process of updating things, I proposed we temporarily allow this to pass CI and revisit it when there is a new release of Hyper or the relevant dependencies thereof. --- deny.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/deny.toml b/deny.toml index 2e6b2e7a8..54d9c2c00 100644 --- a/deny.toml +++ b/deny.toml @@ -16,6 +16,7 @@ deny = [ ] skip = [ { name = "crossbeam-utils", version = "=0.6.6" }, + { name = "crossbeam-queue", version = "=0.2.0" }, ] skip-tree = [ { name = "rand", version = "=0.6.5" },