diff options
| author | Julian Wollersberger <julian.wollersberger@gmx.at> | 2020-09-20 19:07:52 +0200 |
|---|---|---|
| committer | Julian Wollersberger <julian.wollersberger@gmx.at> | 2020-09-20 19:07:52 +0200 |
| commit | 53aaa1e532657390edfbe046a3f18d95e9543424 (patch) | |
| tree | 5ac0d0a7ff7de75199c56ddcc027f8c8f31f8643 /compiler/rustc_data_structures | |
| parent | b873fa6d42cf305131d2583d03b84686e5e40f2e (diff) | |
| download | rust-53aaa1e532657390edfbe046a3f18d95e9543424.tar.gz rust-53aaa1e532657390edfbe046a3f18d95e9543424.zip | |
To avoid monomorphizing `psm::on_stack::with_on_stack` 1500 times, I made a change in `stacker` to wrap the callback in `dyn`.
Diffstat (limited to 'compiler/rustc_data_structures')
| -rw-r--r-- | compiler/rustc_data_structures/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/Cargo.toml b/compiler/rustc_data_structures/Cargo.toml index 3dc55cab95a..bf75fc96f1f 100644 --- a/compiler/rustc_data_structures/Cargo.toml +++ b/compiler/rustc_data_structures/Cargo.toml @@ -26,7 +26,7 @@ rustc_index = { path = "../rustc_index", package = "rustc_index" } bitflags = "1.2.1" measureme = "0.7.1" libc = "0.2" -stacker = "0.1.11" +stacker = "0.1.12" tempfile = "3.0.5" [dependencies.parking_lot] |
