Remove the unstable alloc::allocator module reexport, deprecated since 1.27

This commit is contained in:
Simon Sapin 2018-06-15 03:39:17 +02:00
parent 1acbb0a935
commit 26324d0abe

View File

@ -141,13 +141,6 @@ extern crate rand;
#[macro_use]
mod macros;
#[rustc_deprecated(since = "1.27.0", reason = "use the heap module in core, alloc, or std instead")]
#[unstable(feature = "allocator_api", issue = "32838")]
/// Use the `alloc` module instead.
pub mod allocator {
pub use alloc::*;
}
// Heaps provided for low-level allocation strategies
pub mod alloc;