diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-06-14 08:35:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-14 08:35:50 +0200 |
| commit | 9f2fc640f343a5f89e3243e56aa0b350f26dde30 (patch) | |
| tree | d5ce3421633a3bc184438790f93e88358add7506 | |
| parent | e1e72aa4862497cade2a718c67825260841fffe3 (diff) | |
| parent | 12432130a37e1637690df3dc70c31ecb866e3183 (diff) | |
| download | rust-9f2fc640f343a5f89e3243e56aa0b350f26dde30.tar.gz rust-9f2fc640f343a5f89e3243e56aa0b350f26dde30.zip | |
Rollup merge of #126368 - nnethercote:rm-more-unused-crate-deps, r=jackh726
Remove some unnecessary crate dependencies. A follow-up to #126063. r? ``@jackh726``
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | compiler/rustc_data_structures/Cargo.toml | 6 | ||||
| -rw-r--r-- | compiler/rustc_infer/Cargo.toml | 1 |
3 files changed, 5 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 3fef02208ab..a8f6eccb3d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4205,7 +4205,6 @@ dependencies = [ "rustc_middle", "rustc_span", "rustc_target", - "rustc_type_ir", "smallvec", "tracing", ] diff --git a/compiler/rustc_data_structures/Cargo.toml b/compiler/rustc_data_structures/Cargo.toml index 6876046a583..ff0a94f8e9b 100644 --- a/compiler/rustc_data_structures/Cargo.toml +++ b/compiler/rustc_data_structures/Cargo.toml @@ -12,7 +12,6 @@ elsa = "=1.7.1" ena = "0.14.3" indexmap = { version = "2.0.0" } jobserver_crate = { version = "0.1.28", package = "jobserver" } -libc = "0.2" measureme = "11" rustc-hash = "1.1.0" rustc-rayon = { version = "0.5.0", optional = true } @@ -41,6 +40,11 @@ features = [ "Win32_System_Threading", ] +[target.'cfg(unix)'.dependencies] +# tidy-alphabetical-start +libc = "0.2" +# tidy-alphabetical-end + [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # tidy-alphabetical-start memmap2 = "0.2.1" diff --git a/compiler/rustc_infer/Cargo.toml b/compiler/rustc_infer/Cargo.toml index 5136ab79a0f..c1565a7d40f 100644 --- a/compiler/rustc_infer/Cargo.toml +++ b/compiler/rustc_infer/Cargo.toml @@ -18,7 +18,6 @@ rustc_macros = { path = "../rustc_macros" } rustc_middle = { path = "../rustc_middle" } rustc_span = { path = "../rustc_span" } rustc_target = { path = "../rustc_target" } -rustc_type_ir = { path = "../rustc_type_ir" } smallvec = { version = "1.8.1", features = ["union", "may_dangle"] } tracing = "0.1" # tidy-alphabetical-end |
