Update path to alloc::collections for nightly-2018-07-07

This commit is contained in:
David Tolnay 2018-07-06 20:04:23 -07:00
parent 3bcd568c86
commit 229a9d90ba
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -193,7 +193,7 @@ mod lib {
pub use std::sync::{Arc, Weak as ArcWeak};
#[cfg(all(feature = "alloc", not(feature = "std")))]
pub use alloc::{BTreeMap, BTreeSet, BinaryHeap, LinkedList, VecDeque};
pub use alloc::collections::{BTreeMap, BTreeSet, BinaryHeap, LinkedList, VecDeque};
#[cfg(feature = "std")]
pub use std::collections::{BTreeMap, BTreeSet, BinaryHeap, LinkedList, VecDeque};