Skip to content

Commit

Permalink
Merge pull request #112 from ivmarkov/ci
Browse files Browse the repository at this point in the history
Fix nightly CI
  • Loading branch information
kedars authored Oct 6, 2023
2 parents 7b55e7f + 1524194 commit 89f2bc4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rs-matter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 89f2bc4

Please sign in to comment.