From d0ae34ff785a3a7f56225413bf963f8110ca7c59 Mon Sep 17 00:00:00 2001 From: Sergio Arroutbi Date: Tue, 19 Sep 2023 13:16:46 +0200 Subject: [PATCH] Remove private_in_public Resolves: #652 According to The Rust RFC Book type privacy chapter: https://rust-lang.github.io/rfcs/2145-type-privacy.html "private_in_public" compatibility lint will be removed and its uses will be reported as warnings by "renamed_and_removed_lints" Signed-off-by: Sergio Arroutbi --- keylime-agent/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/keylime-agent/src/main.rs b/keylime-agent/src/main.rs index 36ad9d5a..0a16f07b 100644 --- a/keylime-agent/src/main.rs +++ b/keylime-agent/src/main.rs @@ -10,7 +10,6 @@ overflowing_literals, path_statements, patterns_in_fns_without_body, - private_in_public, unconditional_recursion, unused, while_true,