From 12c85c669c15fc2c801f320dd6e25a87e47719cf Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Thu, 26 Mar 2020 15:05:05 +0100 Subject: [PATCH] data_structures: Bump crossbeam_utils to 0.7 This pulls in the build fix for nightly build: https://github.com/crossbeam-rs/crossbeam/commit/5b5d727fcd2616b1f5314db03f4e6b96791a303d Related: https://github.com/rust-lang/rls/issues/1571 --- Cargo.lock | 2 +- src/librustc_data_structures/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8bf6198913530..ac3724e99067d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3633,7 +3633,7 @@ version = "0.0.0" dependencies = [ "bitflags", "cfg-if", - "crossbeam-utils 0.6.5", + "crossbeam-utils 0.7.0", "ena", "graphviz", "indexmap", diff --git a/src/librustc_data_structures/Cargo.toml b/src/librustc_data_structures/Cargo.toml index fb4f818c4b249..06137e53d83e5 100644 --- a/src/librustc_data_structures/Cargo.toml +++ b/src/librustc_data_structures/Cargo.toml @@ -18,7 +18,7 @@ lazy_static = "1" rustc_serialize = { path = "../libserialize", package = "serialize" } graphviz = { path = "../libgraphviz" } cfg-if = "0.1.2" -crossbeam-utils = { version = "0.6.5", features = ["nightly"] } +crossbeam-utils = { version = "0.7", features = ["nightly"] } stable_deref_trait = "1.0.0" rayon = { version = "0.3.0", package = "rustc-rayon" } rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }