From 2675ff76353ba20cd94d31b0e0502aa5496f179e Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Tue, 28 May 2024 05:51:33 +0200 Subject: [PATCH] Add some allow(unused) attributes to fix the build pipeline (#59) --- pio-parser/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pio-parser/src/lib.rs b/pio-parser/src/lib.rs index 28a53a5..f943871 100644 --- a/pio-parser/src/lib.rs +++ b/pio-parser/src/lib.rs @@ -11,6 +11,7 @@ use std::collections::HashMap; mod parser { #![allow(clippy::all)] + #![allow(unused)] include!(concat!(env!("OUT_DIR"), "/pio.rs")); } @@ -63,6 +64,7 @@ pub(crate) enum ParsedDirective<'input> { }, WrapTarget, Wrap, + #[allow(unused)] LangOpt(&'input str), }