Skip to content

Commit

Permalink
Remove the unstable std_unicode crate, deprecated since 1.27
Browse files Browse the repository at this point in the history
Its former contents are now in libcore.
  • Loading branch information
SimonSapin committed Jul 30, 2018
1 parent 54628c8 commit d8b3c83
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 63 deletions.
9 changes: 0 additions & 9 deletions src/Cargo.lock
Expand Up @@ -2615,18 +2615,9 @@ dependencies = [
"rustc_lsan 0.0.0",
"rustc_msan 0.0.0",
"rustc_tsan 0.0.0",
"std_unicode 0.0.0",
"unwind 0.0.0",
]

[[package]]
name = "std_unicode"
version = "0.0.0"
dependencies = [
"compiler_builtins 0.0.0",
"core 0.0.0",
]

[[package]]
name = "string_cache"
version = "0.7.3"
Expand Down
1 change: 0 additions & 1 deletion src/bootstrap/compile.rs
Expand Up @@ -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 {
Expand Down
1 change: 0 additions & 1 deletion src/bootstrap/dist.rs
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap/doc.rs
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion src/libstd/Cargo.toml
Expand Up @@ -22,7 +22,6 @@ core = { path = "../libcore" }
libc = { path = "../rustc/libc_shim" }
compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
profiler_builtins = { path = "../libprofiler_builtins", optional = true }
std_unicode = { path = "../libstd_unicode" }
unwind = { path = "../libunwind" }

[dev-dependencies]
Expand Down
14 changes: 0 additions & 14 deletions src/libstd_unicode/Cargo.toml

This file was deleted.

36 changes: 0 additions & 36 deletions src/libstd_unicode/lib.rs

This file was deleted.

0 comments on commit d8b3c83

Please sign in to comment.