1 2 3 4 5 6 7 8 9
//! Asynchronous command execution. //! //! Provides command building and execution using `tokio::process::Command`. pub mod builder; pub mod pipeline; pub use builder::CommandBuilder; pub use pipeline::Pipeline;