Skip to content

Commit

Permalink
Fix CI with 1.80
Browse files Browse the repository at this point in the history
  • Loading branch information
korken89 committed Aug 7, 2024
1 parent f925cbe commit edafa4e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/lm3s6965/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions examples/lm3s6965/examples/t-cfg-resources.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#![deny(warnings)]
#![deny(unsafe_code)]
#![deny(missing_docs)]
#![allow(unexpected_cfgs)]

use panic_semihosting as _;

Expand Down
1 change: 1 addition & 0 deletions rtic-monotonics/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ fn main() {
#[cfg(feature = "stm32-metapac")]
stm32();

println!("cargo::rustc-check-cfg=cfg(stm32)");
println!("cargo:rerun-if-changed=build.rs");
}

Expand Down
1 change: 1 addition & 0 deletions rtic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
html_favicon_url = "https://raw.githubusercontent.com/rtic-rs/rtic/master/book/en/src/RTIC.svg"
)]
#![allow(clippy::inline_always)]
#![allow(unexpected_cfgs)]

pub use rtic_core::{prelude as mutex_prelude, Exclusive, Mutex};
pub use rtic_macros::app;
Expand Down

0 comments on commit edafa4e

Please sign in to comment.