From 95f542614faab3c7d4430b32cbbd63cc5fe5bf2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20L=C3=B3pez?= Date: Wed, 17 Jul 2024 18:29:45 +0200 Subject: [PATCH] workspace: remove missing_copy_implementations workspace lint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Do not require Copy for all structures that can derive it, as this can be error prone and can inadvertently increase stack usage. For now, remove the related lint, as introducing Copy for in the future should not require too much work if necessary. Signed-off-by: Carlos López --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index abf4b9061..6169919b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,6 @@ packit = { git = "https://github.com/coconut-svsm/packit", version = "0.1.1" } future_incompatible = "deny" nonstandard_style = "deny" rust_2018_idioms = "deny" -missing_copy_implementations = "deny" missing_debug_implementations = "deny" single_use_lifetimes = "warn" trivial-numeric-casts = "deny"