diff options
| author | bors <bors@rust-lang.org> | 2021-03-15 08:49:25 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-03-15 08:49:25 +0000 |
| commit | 2a55274e0ca9bf0b60cf72744b91237de625863e (patch) | |
| tree | a291c3b3a1058bc74ec0100b1a134c969aa8000b /compiler/rustc_interface | |
| parent | 3963c3da02d17b9c52feaf0e05271db2ec51c29f (diff) | |
| parent | f7e75a2124ccd8e0a655220f70fd1eba765cf5d2 (diff) | |
| download | rust-2a55274e0ca9bf0b60cf72744b91237de625863e.tar.gz rust-2a55274e0ca9bf0b60cf72744b91237de625863e.zip | |
Auto merge of #82999 - cuviper:rustc-rayon-0.3.1, r=Mark-Simulacrum
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.
Diffstat (limited to 'compiler/rustc_interface')
| -rw-r--r-- | compiler/rustc_interface/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_interface/Cargo.toml b/compiler/rustc_interface/Cargo.toml index cfe98a630c1..3bfe8da505f 100644 --- a/compiler/rustc_interface/Cargo.toml +++ b/compiler/rustc_interface/Cargo.toml @@ -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" } |
