cradle/common_re_exports.rs.snippet
1// This file contains common re-exports included in both `src/lib.rs` and `src/prelude.rs`.
2// Putting these into a common file ensures that they stay in sync.
3//
4// Note that the macros defined in `src/macros.rs` are already exported from the root module.
5// So they can't be included here, since that would clash.
6pub use crate::{
7 error::Error,
8 input::{CurrentDir, Env, Input, LogCommand, Split, Stdin},
9 output::{Output, Status, Stderr, StdoutTrimmed, StdoutUntrimmed},
10};