just 0.9.2

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 just::unindent;
pub(crate) use libc::{EXIT_FAILURE, EXIT_SUCCESS};
pub(crate) use test_utilities::{assert_stdout, tempdir, tmptree};
pub(crate) use which::which;