From 152419472b031bd0a953c843827c4654e0378868 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Fri, 6 Oct 2023 14:24:49 +0000 Subject: [PATCH] Fix nightly CI --- rs-matter/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rs-matter/src/lib.rs b/rs-matter/src/lib.rs index 450090be..e8f26c66 100644 --- a/rs-matter/src/lib.rs +++ b/rs-matter/src/lib.rs @@ -71,9 +71,10 @@ //! Start off exploring by going to the [Matter] object. #![cfg_attr(not(feature = "std"), no_std)] #![allow(stable_features)] +#![allow(unknown_lints)] #![cfg_attr(feature = "nightly", feature(async_fn_in_trait))] +#![cfg_attr(feature = "nightly", allow(async_fn_in_trait))] #![cfg_attr(feature = "nightly", feature(impl_trait_projections))] -#![cfg_attr(feature = "nightly", allow(incomplete_features))] pub mod acl; pub mod cert;