about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-07-26 14:54:41 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-07-30 18:18:04 +0200
commitd8b3c830fbcdd14d085209a8dcc3399151f3286a (patch)
treed5c12928c9ed0e751e3f84acffe3bc06a2528a57 /src/bootstrap
parent54628c8ea844956f3f4f416b82067c634eb09f7b (diff)
downloadrust-d8b3c830fbcdd14d085209a8dcc3399151f3286a.tar.gz
rust-d8b3c830fbcdd14d085209a8dcc3399151f3286a.zip
Remove the unstable std_unicode crate, deprecated since 1.27
Its former contents are now in libcore.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/compile.rs1
-rw-r--r--src/bootstrap/dist.rs1
-rw-r--r--src/bootstrap/doc.rs2
3 files changed, 1 insertions, 3 deletions
diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs
index 04e8e133b03..8c4f2df60fe 100644
--- a/src/bootstrap/compile.rs
+++ b/src/bootstrap/compile.rs
@@ -157,7 +157,6 @@ pub fn std_cargo(builder: &Builder,
         cargo.arg("--features").arg("c mem")
             .args(&["-p", "alloc"])
             .args(&["-p", "compiler_builtins"])
-            .args(&["-p", "std_unicode"])
             .arg("--manifest-path")
             .arg(builder.src.join("src/rustc/compiler_builtins_shim/Cargo.toml"));
     } else {
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
index c6b39a52ae1..188e64cd668 100644
--- a/src/bootstrap/dist.rs
+++ b/src/bootstrap/dist.rs
@@ -856,7 +856,6 @@ impl Step for Src {
             "src/librustc_msan",
             "src/librustc_tsan",
             "src/libstd",
-            "src/libstd_unicode",
             "src/libunwind",
             "src/rustc/compiler_builtins_shim",
             "src/rustc/libc_shim",
diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs
index 9dbbe6bcfe4..ed9b5b1773f 100644
--- a/src/bootstrap/doc.rs
+++ b/src/bootstrap/doc.rs
@@ -489,7 +489,7 @@ impl Step for Std {
         // Keep a whitelist so we do not build internal stdlib crates, these will be
         // build by the rustc step later if enabled.
         cargo.arg("--no-deps");
-        for krate in &["alloc", "core", "std", "std_unicode"] {
+        for krate in &["alloc", "core", "std"] {
             cargo.arg("-p").arg(krate);
             // Create all crate output directories first to make sure rustdoc uses
             // relative links.