Skip to content

Commit e500225

Browse files
authored
Merge pull request #50 from Manishearth/nightly-ci
Fix nightly CI
2 parents f0b62a5 + 6311985 commit e500225

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
overflowing_literals,
106106
path_statements,
107107
patterns_in_fns_without_body,
108-
private_in_public,
109108
unconditional_recursion,
110109
unused,
111110
unused_allocation,

tests/no_std/enum_prefix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(not(feature = "std"), feature(lang_items, start))]
1+
#![cfg_attr(not(feature = "std"), allow(internal_features), feature(lang_items, start))]
22
#![cfg_attr(not(feature = "std"), no_std)]
33

44
#[cfg_attr(not(feature = "std"), start)]

tests/no_std/enum_prefix_missing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(not(feature = "std"), feature(lang_items, start))]
1+
#![cfg_attr(not(feature = "std"), allow(internal_features), feature(lang_items, start))]
22
#![cfg_attr(not(feature = "std"), no_std)]
33

44
#[cfg_attr(not(feature = "std"), start)]

tests/no_std/multi_line.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(not(feature = "std"), feature(lang_items, start))]
1+
#![cfg_attr(not(feature = "std"), allow(internal_features), feature(lang_items, start))]
22
#![cfg_attr(not(feature = "std"), no_std)]
33

44
#[cfg_attr(not(feature = "std"), start)]

tests/no_std/multi_line_allow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(not(feature = "std"), feature(lang_items, start))]
1+
#![cfg_attr(not(feature = "std"), allow(internal_features), feature(lang_items, start))]
22
#![cfg_attr(not(feature = "std"), no_std)]
33

44
#[cfg_attr(not(feature = "std"), start)]

tests/no_std/without.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(not(feature = "std"), feature(lang_items, start))]
1+
#![cfg_attr(not(feature = "std"), allow(internal_features), feature(lang_items, start))]
22
#![cfg_attr(not(feature = "std"), no_std)]
33

44
#[cfg_attr(not(feature = "std"), start)]

0 commit comments

Comments
 (0)