29 releases

0.2.2 May 3, 2022
0.2.1 Jan 2, 2022
0.2.0 Sep 24, 2021
0.1.0 Sep 12, 2021
0.0.8 Jun 30, 2021

#350 in Operating systems

Download history 58/week @ 2023-11-20 49/week @ 2023-11-27 61/week @ 2023-12-04 34/week @ 2023-12-11 169/week @ 2023-12-18 285/week @ 2023-12-25 128/week @ 2024-01-01 220/week @ 2024-01-08 59/week @ 2024-01-15 32/week @ 2024-01-22 39/week @ 2024-01-29 47/week @ 2024-02-05 141/week @ 2024-02-12 95/week @ 2024-02-19 205/week @ 2024-02-26 200/week @ 2024-03-04

658 downloads per month
Used in 5 crates (4 directly)

CC0 license

115KB
2.5K SLoC

ci status badge crates.io docs

cradle is a library for executing child processes. It provides a more convenient interface than std::process::Command. Here's an example:

use cradle::prelude::*;

fn main() {
    // output git version
    run!(%"git --version");
    // output configured git user
    let (StdoutTrimmed(git_user), Status(status)) = run_output!(%"git config --get user.name");
    if status.success() {
        eprintln!("git user: {}", git_user);
    } else {
        eprintln!("git user not configured");
    }
}

For comprehensive documentation, head over to docs.rs/cradle.

Design Goals

cradle is meant to make it as easy as possible to run child processes, while making it hard to use incorrectly. As such it provides an interface that is concise and flexible, and tries to avoid surprising behavior.

cradle does not try to emulate the syntax or functionality of bash or other shells, such as pipes (|), globs (*), or other string expansion. Instead, it aims to be a convenient wrapper around the operating system's interface for running child processes.

MSRV

The minimal supported rust version is 0.41.

Dependencies

~0–10MB
~88K SLoC