7 releases

0.2.9 Feb 12, 2023
0.2.8 Jan 31, 2023
0.2.6 Jun 12, 2022
0.2.5 Dec 18, 2021
0.2.3 Jul 3, 2021

#192 in Testing

Download history 17/week @ 2024-01-14 11/week @ 2024-01-21 3/week @ 2024-01-28 19/week @ 2024-02-04 15/week @ 2024-02-11 23/week @ 2024-02-18 86/week @ 2024-02-25 23/week @ 2024-03-03 57/week @ 2024-03-10 38/week @ 2024-03-17 23/week @ 2024-03-24 105/week @ 2024-03-31 21/week @ 2024-04-07 30/week @ 2024-04-14 50/week @ 2024-04-21 28/week @ 2024-04-28

153 downloads per month
Used in 11 crates

MIT/Apache

13KB
215 lines

exec-target

crate Docs Rust Version Apache2/MIT licensed Test ubu Test mac Test win

the simple invoke command for test

This invokes external a command and manipulates standard in out. You can use std::process::Command more easily.

Features

  • minimum support rustc 1.56.1 (59eed8a2a 2021-11-01)

Example

use exec_target::exec_target_with_env_in;

let command = "target/debug/exe-stab-grep";
let args = &["--color=always", "-e", "c"];
let envs = vec![("GREP_COLORS", "ms=01;32")];
let inp = b"abcdefg\n" as &[u8];

let oup = exec_target_with_env_in(command, args, envs, inp);

assert_eq!(oup.stderr, "");
assert_eq!(oup.stdout, "ab\u{1b}[01;32m\u{1b}[Kc\u{1b}[m\u{1b}[Kdefg\n");
assert_eq!(oup.status.success(), true);

Changelogs

This crate's changelog here.

License

This project is licensed under either of

at your option.

No runtime deps