diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2018-07-26 14:54:41 +0200 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2018-07-30 18:18:04 +0200 |
| commit | d8b3c830fbcdd14d085209a8dcc3399151f3286a (patch) | |
| tree | d5c12928c9ed0e751e3f84acffe3bc06a2528a57 /src/bootstrap/doc.rs | |
| parent | 54628c8ea844956f3f4f416b82067c634eb09f7b (diff) | |
| download | rust-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/doc.rs')
| -rw-r--r-- | src/bootstrap/doc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
