just 0.8.5

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) use std::{
  collections::BTreeMap,
  env, fs,
  io::Write,
  iter,
  path::Path,
  process::{Command, Stdio},
  str,
};

pub(crate) use executable_path::executable_path;
pub(crate) use libc::{EXIT_FAILURE, EXIT_SUCCESS};
pub(crate) use test_utilities::{assert_stdout, tempdir, tmptree, unindent};
pub(crate) use which::which;