File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ This library allows you to do in-place initialization safely.
3131This library requires unstable features when the ` alloc ` or ` std ` features are enabled and thus
3232can only be used with a nightly compiler. The internally used features are:
3333- ` allocator_api `
34- - ` new_uninit `
3534- ` get_mut_unchecked `
3635
3736When enabling the ` alloc ` or ` std ` feature, the user will be required to activate these features:
Original file line number Diff line number Diff line change 2323//! This library requires unstable features when the `alloc` or `std` features are enabled and thus
2424//! can only be used with a nightly compiler. The internally used features are:
2525//! - `allocator_api`
26- //! - `new_uninit`
2726//! - `get_mut_unchecked`
2827//!
2928//! When enabling the `alloc` or `std` feature, the user will be required to activate these features:
237236#![ forbid( missing_docs, unsafe_op_in_unsafe_fn) ]
238237#![ cfg_attr( not( feature = "std" ) , no_std) ]
239238#![ cfg_attr( feature = "alloc" , feature( allocator_api) ) ]
240- #![ cfg_attr( feature = "alloc" , feature( new_uninit) ) ]
241239#![ cfg_attr( feature = "alloc" , feature( get_mut_unchecked) ) ]
242240
243241#[ cfg( feature = "alloc" ) ]
You can’t perform that action at this time.
0 commit comments