Skip to content

Commit 1b61db7

Browse files
committed
Enable nightly feature for crossbeam-utils dep
Last two commits bumped rustc-ap-* crates which also transitively updated rustc_data_structures. That crate enables the "nightly" whereas Cargo's dep does not hence why we need to unify the features to deduplicate the artifacts.
1 parent ab27d67 commit 1b61db7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -2733,6 +2733,7 @@ name = "rustc-workspace-hack"
27332733
version = "1.0.0"
27342734
dependencies = [
27352735
"byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
2736+
"crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
27362737
"parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
27372738
"rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
27382739
"scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",

src/tools/rustc-workspace-hack/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ features = [
6464

6565
[dependencies]
6666
curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true }
67+
crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
6768
parking_lot = { version = "0.7", features = ['nightly'] }
6869
rand = { version = "0.6.1", features = ["i128_support"] }
6970
serde = { version = "1.0.82", features = ['derive'] }

0 commit comments

Comments
 (0)