Skip to content

Commit

Permalink
Allow internal_features lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Aug 5, 2023
1 parent 3a16126 commit e50b916
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#![doc = include_str!("../README.md")]
#![feature(c_unwind)]
#![feature(naked_functions)]
// lang_items is an internal feature. `internal_features` lint is added recently
// so also allow unknown lints to prevent warning in older nightly versions.
#![allow(unknown_lints)]
#![allow(internal_features)]
#![cfg_attr(
any(feature = "personality", feature = "personality-dummy"),
feature(lang_items)
Expand Down

0 comments on commit e50b916

Please sign in to comment.