diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-03-14 11:16:10 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-03-14 13:59:02 -0700 |
| commit | 58e4ab2b33f559107dbdfa9d3cab882cf8029481 (patch) | |
| tree | 749ec81e1a287e6ce082c201d97cec7243612a79 /src/libstd/lib.rs | |
| parent | e99d523707c8058383e7a551e49d59ce622d5765 (diff) | |
| download | rust-58e4ab2b33f559107dbdfa9d3cab882cf8029481.tar.gz rust-58e4ab2b33f559107dbdfa9d3cab882cf8029481.zip | |
extra: Put the nail in the coffin, delete libextra
This commit shreds all remnants of libextra from the compiler and standard distribution. Two modules, c_vec/tempfile, were moved into libstd after some cleanup, and the other modules were moved to separate crates as seen fit. Closes #8784 Closes #12413 Closes #12576
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 24a77b71fba..6b1773ec7ff 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -74,9 +74,8 @@ #[cfg(test)] extern crate native; #[cfg(test)] extern crate green; -// Make extra and rand accessible for benchmarking/testcases +// Make and rand accessible for benchmarking/testcases #[cfg(test)] extern crate rand; -#[cfg(test)] extern crate extra = "extra"; // Make std testable by not duplicating lang items. See #2912 #[cfg(test)] extern crate realstd = "std"; @@ -172,6 +171,7 @@ pub mod sync; #[unstable] pub mod libc; pub mod c_str; +pub mod c_vec; pub mod os; pub mod io; pub mod path; |
