diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2021-06-24 22:14:44 -0700 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2021-06-25 01:03:16 -0700 |
| commit | 6e75aae3555e75bf883bd1207ae4edcf588a77ab (patch) | |
| tree | cb6d036ad15ee0ffcdb51b8ca68efd5834ee89fc /compiler/rustc_data_structures | |
| parent | 079aa837d205960592ef479387fb272cba16e2da (diff) | |
| download | rust-6e75aae3555e75bf883bd1207ae4edcf588a77ab.tar.gz rust-6e75aae3555e75bf883bd1207ae4edcf588a77ab.zip | |
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.
Diffstat (limited to 'compiler/rustc_data_structures')
| -rw-r--r-- | compiler/rustc_data_structures/Cargo.toml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/Cargo.toml b/compiler/rustc_data_structures/Cargo.toml index c35a164bb33..112b94f6e0e 100644 --- a/compiler/rustc_data_structures/Cargo.toml +++ b/compiler/rustc_data_structures/Cargo.toml @@ -17,7 +17,6 @@ rustc_serialize = { path = "../rustc_serialize" } rustc_macros = { path = "../rustc_macros" } rustc_graphviz = { path = "../rustc_graphviz" } cfg-if = "0.1.2" -crossbeam-utils = { version = "0.8", features = ["nightly"] } stable_deref_trait = "1.0.0" rayon = { version = "0.3.1", package = "rustc-rayon" } rayon-core = { version = "0.3.1", package = "rustc-rayon-core" } |
