├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Justfile ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.adoc └── src ├── bin └── shell.rs ├── errors.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .cargo 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/README.adoc -------------------------------------------------------------------------------- /src/bin/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/src/bin/shell.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- 1 | error_chain!{ } 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwoolcoc/cargo-shell/HEAD/src/lib.rs --------------------------------------------------------------------------------