From 22779a7a2105fedf2ecce8d9111bc3782ac4fb78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 23 Jul 2024 22:59:19 +0400 Subject: [PATCH] example: explicitly allow print_stdout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit But not in the rest of the code base. Signed-off-by: Marc-André Lureau --- crates/ironrdp/examples/screenshot.rs | 1 + crates/ironrdp/examples/server.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/crates/ironrdp/examples/screenshot.rs b/crates/ironrdp/examples/screenshot.rs index 6bb3cd99..d4664e86 100644 --- a/crates/ironrdp/examples/screenshot.rs +++ b/crates/ironrdp/examples/screenshot.rs @@ -15,6 +15,7 @@ //! ``` #![allow(unused_crate_dependencies)] // false positives because there is both a library and a binary +#![allow(clippy::print_stdout)] #[macro_use] extern crate tracing; diff --git a/crates/ironrdp/examples/server.rs b/crates/ironrdp/examples/server.rs index 590d5e76..fe650b07 100644 --- a/crates/ironrdp/examples/server.rs +++ b/crates/ironrdp/examples/server.rs @@ -1,6 +1,7 @@ //! Example of utilizing `ironrdp-server` crate. #![allow(unused_crate_dependencies)] // false positives because there is both a library and a binary +#![allow(clippy::print_stdout)] #[macro_use] extern crate tracing;