Update to rustc-rayon 0.3.1
This pulls in rust-lang/rustc-rayon#8 to fix #81425. (h/t @ammaraskar) That revealed weak constraints on `rustc_arena::DropArena`, because its `DropType` was holding type-erased raw pointers to generic `T`. We can implement `Send` for `DropType` (under `cfg(parallel_compiler)`) by requiring all `T: Send` before they're type-erased.
This commit is contained in:
parent
f98721f886
commit
f7e75a2124
8 changed files with 41 additions and 42 deletions
|
@ -10,8 +10,8 @@ doctest = false
|
|||
[dependencies]
|
||||
libc = "0.2"
|
||||
tracing = "0.1"
|
||||
rustc-rayon-core = "0.3.0"
|
||||
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
||||
rustc-rayon-core = "0.3.1"
|
||||
rayon = { version = "0.3.1", package = "rustc-rayon" }
|
||||
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|
||||
rustc_ast = { path = "../rustc_ast" }
|
||||
rustc_attr = { path = "../rustc_attr" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue