Skip to content

Commit 6e75aae

Browse files
committed
rustc_data_structures: Drop unused dependency on crossbeam-utils
rustc_data_structures has a dependency on crossbeam-utils but never uses it. It appears to have originally had this dependency in order to set the "nightly" feature; however, its other dependencies use a different version of crossbeam-utils, so this doesn't actually affect anything. Furthermore, in current crossbeam-utils, the "nightly" feature has become a no-op.
1 parent 079aa83 commit 6e75aae

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3768,7 +3768,6 @@ dependencies = [
37683768
"arrayvec",
37693769
"bitflags",
37703770
"cfg-if 0.1.10",
3771-
"crossbeam-utils 0.8.3",
37723771
"ena",
37733772
"indexmap",
37743773
"jobserver",

compiler/rustc_data_structures/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ rustc_serialize = { path = "../rustc_serialize" }
1717
rustc_macros = { path = "../rustc_macros" }
1818
rustc_graphviz = { path = "../rustc_graphviz" }
1919
cfg-if = "0.1.2"
20-
crossbeam-utils = { version = "0.8", features = ["nightly"] }
2120
stable_deref_trait = "1.0.0"
2221
rayon = { version = "0.3.1", package = "rustc-rayon" }
2322
rayon-core = { version = "0.3.1", package = "rustc-rayon-core" }

0 commit comments

Comments
 (0)