Remove #![feature(slice_rotate)], as it is stable since Rust 1.26.

v0.7.x
whitequark 2018-05-24 21:21:51 +00:00
parent 1328e59fc7
commit 3d55592b98
2 changed files with 1 additions and 2 deletions

View File

@ -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
-----

View File

@ -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