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