Remove the Vec and String reexports at the root of the alloc crate

… since `std` has no corresponding reexports.

Use `alloc::vec::Vec` and `alloc::string::String` instead.
This commit is contained in:
Simon Sapin
2018-06-15 03:59:59 +02:00
parent b0547cea0a
commit 3394fb7bb7

View File

@@ -179,8 +179,3 @@ pub mod vec;
mod std {
pub use core::ops; // RangeFull
}
#[doc(no_inline)]
pub use string::String;
#[doc(no_inline)]
pub use vec::Vec;