diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-06-18 10:34:10 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-18 10:34:10 -0600 |
| commit | c982529327010c92e08b22703d7930f505cfb90a (patch) | |
| tree | a32e5b1ea286f39a065b371535d6cf9ed6bb04bd /src/bootstrap | |
| parent | 9b4c4d001f0b9f3c9f4b1660c603d33b78a4425f (diff) | |
| parent | 6484258f1749499d3e51685df867b3d460a7f0be (diff) | |
| download | rust-c982529327010c92e08b22703d7930f505cfb90a.tar.gz rust-c982529327010c92e08b22703d7930f505cfb90a.zip | |
Rollup merge of #42720 - murarth:deprecated-collections, r=alexcrichton
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. |
