From 0693366106cd79afd83159d82d2e379dcdd7d25d Mon Sep 17 00:00:00 2001 From: "Marcin S." Date: Mon, 4 Dec 2023 18:25:22 +0100 Subject: [PATCH] remove lint (broken in prepare-worker) This lint doesn't work with multiple targets (in the case of prepare-worker, the bench-only dependencies were messing it up). See: - https://github.com/rust-lang/rust/issues/95513 - https://github.com/rust-lang/rust/issues/57274#issuecomment-1430331803 --- polkadot/node/core/pvf/prepare-worker/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/polkadot/node/core/pvf/prepare-worker/src/lib.rs b/polkadot/node/core/pvf/prepare-worker/src/lib.rs index fd9e47b925fc..9033689006d4 100644 --- a/polkadot/node/core/pvf/prepare-worker/src/lib.rs +++ b/polkadot/node/core/pvf/prepare-worker/src/lib.rs @@ -16,7 +16,6 @@ //! Contains the logic for preparing PVFs. Used by the polkadot-prepare-worker binary. -#![deny(unused_crate_dependencies)] #![warn(missing_docs)] mod memory_stats;