ezexec 0.4.1

A simple API to execute binaries or shell commands via `std::process::Command`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

#[macro_use]
pub mod error;
mod builder;
mod capturing_executor;
pub mod lookup;
mod transparent_executor;

pub use crate::{
    builder::ExecBuilder, capturing_executor::CapturingExecutor, transparent_executor::TransparentExecutor,
};