Skip to content

Commit ec25e61

Browse files
committed
Allow internal features
1 parent 361a072 commit ec25e61

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#![deny(unsafe_code)]
2-
#![cfg_attr(feature = "nightly", feature(allow_internal_unstable))]
2+
#![cfg_attr(
3+
feature = "nightly",
4+
feature(allow_internal_unstable),
5+
allow(internal_features)
6+
)]
37
#![allow(clippy::tabs_in_doc_comments)]
48
#![warn(clippy::cargo, clippy::missing_docs_in_private_items)]
59
#![cfg_attr(doc, allow(unknown_lints), warn(rustdoc::all))]

0 commit comments

Comments
 (0)