From 82a912a2ee93f9e087b6a3b4c2933a3ca3e6dd73 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 5 Nov 2024 13:49:49 -0600 Subject: [PATCH] chore: Silence clippy for intregration --- crates/build-rs/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/build-rs/src/lib.rs b/crates/build-rs/src/lib.rs index ccc22dd07..4f74da993 100644 --- a/crates/build-rs/src/lib.rs +++ b/crates/build-rs/src/lib.rs @@ -2,6 +2,8 @@ //! protocol. Cargo provides inputs to the build script by environment variable //! and accepts commands by printing to stdout. #![cfg_attr(all(doc, feature = "unstable"), feature(doc_auto_cfg, doc_cfg))] +#![allow(clippy::disallowed_methods)] // HACK: deferred resoling this +#![allow(clippy::print_stdout)] // HACK: deferred resoling this #[cfg(feature = "unstable")] macro_rules! unstable {