Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
don't use rayon
Browse files Browse the repository at this point in the history
  • Loading branch information
ozgrakkurt committed Mar 14, 2023
1 parent 8cb6cb7 commit 6bc5b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/rayon_async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ where
{
let (tx, rx) = oneshot::channel();

rayon::spawn(move || {
std::thread::spawn(move || {
let res = func();
tx.send(res).ok().unwrap();
});
Expand Down

0 comments on commit 6bc5b84

Please sign in to comment.