summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-06 16:33:44 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-09 00:38:46 -0700
commitda0703973af921626d7235131d14847b1aacffc2 (patch)
tree6b0a5c3e35c54c340553eb140019b8ab54a99df1 /src/libstd/lib.rs
parent50942c7695783875bd2161596036a52755ffb09c (diff)
downloadrust-da0703973af921626d7235131d14847b1aacffc2.tar.gz
rust-da0703973af921626d7235131d14847b1aacffc2.zip
core: Move the collections traits to libcollections
This commit moves Mutable, Map, MutableMap, Set, and MutableSet from
`core::collections` to the `collections` crate at the top-level. Additionally,
this removes the `deque` module and moves the `Deque` trait to only being
available at the top-level of the collections crate.

All functionality continues to be reexported through `std::collections`.

[breaking-change]
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index d319d6bd03d..fbdbc13e1b4 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -144,7 +144,6 @@ pub use core::cell;
 pub use core::char;
 pub use core::clone;
 #[cfg(not(test))] pub use core::cmp;
-pub use core::collections;
 pub use core::default;
 pub use core::finally;
 pub use core::intrinsics;