switchy_async 0.2.0

Switchy Async runtime package
Documentation
1
2
3
4
5
6
7
8
//! Process spawning and management.
//!
//! Re-exports `tokio::process` types for async process execution.

pub use tokio::process::{Child, ChildStderr, ChildStdin, ChildStdout, Command};

// Re-export std types that tokio::process uses
pub use std::process::{ExitStatus, Output, Stdio};