Remove #![feature(slice_rotate)], as it is stable since Rust 1.26.
This commit is contained in:
parent
1328e59fc7
commit
3d55592b98
|
@ -80,7 +80,7 @@ on the `alloc` crate. This only works on nightly rustc.
|
|||
|
||||
The `map` feature, disabled by default, enables the `ManagedMap` enum.
|
||||
Its interface is not stable yet and is subject to change.
|
||||
It also requires the use of a nightly compiler.
|
||||
It also requires the use of a nightly compiler, 1.27 or later.
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#![no_std]
|
||||
#![cfg_attr(all(feature = "alloc", not(feature = "std")), feature(alloc))]
|
||||
#![cfg_attr(feature = "map", feature(slice_rotate))]
|
||||
#![cfg_attr(feature = "map", feature(collections_range))]
|
||||
|
||||
//! A library that provides a way to logically own objects, whether or not
|
||||
|
|
Loading…
Reference in New Issue