about summary refs log tree commit diff
path: root/src/libstd/path
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/path
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/path')
-rw-r--r--src/libstd/path/posix.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs
index 8dfb64194e7..171535edbeb 100644
--- a/src/libstd/path/posix.rs
+++ b/src/libstd/path/posix.rs
@@ -13,7 +13,7 @@
 use c_str::{CString, ToCStr};
 use clone::Clone;
 use cmp::{PartialEq, Eq};
-use container::Container;
+use collections::Collection;
 use from_str::FromStr;
 use hash;
 use io::Writer;