From 2f636ed9c05be0903ffb3b1e2af920d621c49031 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 12 Feb 2024 09:40:46 -0600 Subject: [PATCH] chore: Remove potentially unused rustbuild cfgs See https://github.com/rust-lang/cargo/issues/10554#issuecomment-1937776822 --- src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 26f25b8..cf20611 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -269,10 +269,6 @@ html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico" )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] -// When compiled for the rustc compiler itself we want to make sure that this is -// an unstable crate -#![cfg_attr(rustbuild, feature(staged_api, rustc_private))] -#![cfg_attr(rustbuild, unstable(feature = "rustc_private", issue = "27812"))] #![deny(missing_debug_implementations, missing_docs)] mod logger;