From 72630a25141095b07108ce153633c2d63dd8eee6 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Thu, 25 Jul 2024 09:30:14 -0400 Subject: [PATCH] Fix compiler warning on rust 1.80 This dox/doc_cfg attr looks like it was originally included when bootc was split off from ostree into its own repo but never actually used here, so just remove it. Signed-off-by: John Eckersberg --- lib/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 7479f2a5..6d05aa64 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -7,7 +7,6 @@ // See https://doc.rust-lang.org/rustc/lints/listing/allowed-by-default.html #![deny(missing_docs)] #![deny(missing_debug_implementations)] -#![cfg_attr(feature = "dox", feature(doc_cfg))] mod boundimage; pub mod cli;