//! Runtime drivers.
//!
//! Drivers own target/runtime orchestration while semantic stepping stays in
//! the VM kernel path.
pub use NativeSingleThreadDriver;
pub use NativeThreadedDriver;
/// Cooperative driver for WebAssembly targets.
///
/// Uses the single-threaded driver since WASM lacks native threading support.
pub type WasmCooperativeDriver = NativeSingleThreadDriver;