diff options
| author | Murarth <murarth@gmail.com> | 2017-06-17 12:01:18 -0700 |
|---|---|---|
| committer | Murarth <murarth@gmail.com> | 2017-06-17 13:18:18 -0700 |
| commit | 6484258f1749499d3e51685df867b3d460a7f0be (patch) | |
| tree | 21130a0edac861bd7aaa094354a6d6f50cd22a10 /src/bootstrap | |
| parent | dfb8c80e118a6844e3a7130a884e92dde4ef4694 (diff) | |
| download | rust-6484258f1749499d3e51685df867b3d460a7f0be.tar.gz rust-6484258f1749499d3e51685df867b3d460a7f0be.zip | |
Reintroduce deprecated `collections` crate
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/dist.rs | 1 | ||||
| -rw-r--r-- | src/bootstrap/doc.rs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 4d58620ca64..f92e6f50eb3 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -550,6 +550,7 @@ pub fn rust_src(build: &Build) { "src/liballoc_jemalloc", "src/liballoc_system", "src/libbacktrace", + "src/libcollections", "src/libcompiler_builtins", "src/libcore", "src/liblibc", diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs index 23a38f6a896..30f631ca2df 100644 --- a/src/bootstrap/doc.rs +++ b/src/bootstrap/doc.rs @@ -254,7 +254,7 @@ pub fn std(build: &Build, stage: u32, target: &str) { // for which docs must be built. if !build.config.compiler_docs { cargo.arg("--no-deps"); - for krate in &["alloc", "core", "std", "std_unicode"] { + for krate in &["alloc", "collections", "core", "std", "std_unicode"] { cargo.arg("-p").arg(krate); // Create all crate output directories first to make sure rustdoc uses // relative links. |
