about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/util.rs
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-03-25 02:12:13 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-03-25 02:12:13 +0100
commit27c44d2e28d9e1e38526dd52ac2f07336aabe254 (patch)
treeb18b995e9255c543f36059f62eaf2397bd4a4051 /compiler/rustc_interface/src/util.rs
parenta1f48047bf99b0cdc423924c9a09b0759193f9a0 (diff)
downloadrust-27c44d2e28d9e1e38526dd52ac2f07336aabe254.tar.gz
rust-27c44d2e28d9e1e38526dd52ac2f07336aabe254.zip
Update indexmap and rayon crates
Diffstat (limited to 'compiler/rustc_interface/src/util.rs')
-rw-r--r--compiler/rustc_interface/src/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/util.rs b/compiler/rustc_interface/src/util.rs
index 8abdcebb751..aa95c43ef71 100644
--- a/compiler/rustc_interface/src/util.rs
+++ b/compiler/rustc_interface/src/util.rs
@@ -183,7 +183,7 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce() -> R + Send, R: Send>(
                     .try_collect_active_jobs()
                     .expect("active jobs shouldn't be locked in deadlock handler")
             });
-            let registry = rustc_rayon_core::Registry::current();
+            let registry = rayon_core::Registry::current();
             thread::spawn(move || deadlock(query_map, &registry));
         });
     if let Some(size) = get_stack_size() {