example: explicitly allow print_stdout

But not in the rest of the code base.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau
2024-07-24 04:35:32 -04:00
committed by Benoît Cortier
parent ae78520681
commit 22779a7a21
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -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;
+1
View File
@@ -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;