Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

PVF: Remove rayon and some uses of tokio #7153

Merged
merged 16 commits into from
May 16, 2023
3 changes: 3 additions & 0 deletions node/core/pvf/worker/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ fn kill_parent_node_in_emergency() {
}

/// Functionality related to threads spawned by the workers.
///
/// The motivation for this module is to coordinate worker threads without using async Rust. This
/// lets us pull in less dependencies, making the worker binaries smaller and easier to secure.
mrcnski marked this conversation as resolved.
Show resolved Hide resolved
pub mod thread {
use std::{
panic,
Expand Down