gitextract_nbeg4cbc/ ├── .github/ │ └── workflows/ │ ├── cd.yaml │ └── ci.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE.md ├── README.md └── crates/ ├── model/ │ ├── Cargo.toml │ └── src/ │ ├── direction.rs │ ├── lib.rs │ ├── pipe/ │ │ ├── color.rs │ │ └── kind.rs │ ├── pipe.rs │ └── position.rs ├── pipes-rs/ │ ├── Cargo.toml │ └── src/ │ ├── config.rs │ ├── lib.rs │ ├── main.rs │ └── usage ├── rng/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs └── terminal/ ├── Cargo.toml └── src/ ├── lib.rs └── screen.rs