Skip to content

Commit 564e656

Browse files
committed
Remove #![feature()]s stablized in 1.57 & 1.58
1 parent 5389636 commit 564e656

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

libs/simple/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
negative_impls, // impl !Send is much cleaner than PhantomData<Rc<()>>
2626
exhaustive_patterns, // Allow exhaustive matching against never
2727
const_alloc_layout, // Used for StaticType
28-
const_panic, // Const panic should be stable
2928
untagged_unions, // Why isn't this stable?
3029
new_uninit, // Until Rust has const generics, this is how we init arrays..
3130
ptr_metadata, // Needed to abstract over Sized/unsized types

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
#![feature(
2-
const_panic, // RFC 2345 - Const asserts
32
ptr_metadata, // RFC 2580 - Pointer meta
43
coerce_unsized, // RFC 0982 - DST coercion
54
unsize,
65
trait_alias, // RFC 1733 - Trait aliases
76
generic_associated_types, // RFC 1598 - Generic associated types
87
const_raw_ptr_deref, // Needed for const Gc::value
9-
option_result_unwrap_unchecked, // Only used by the 'serde' implementation...
108
// Needed for epsilon collector:
119
once_cell, // RFC 2788 (Probably will be accepted)
1210
negative_impls, // More elegant than marker types

0 commit comments

Comments
 (0)