├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── example ├── Cargo.toml └── main.rs ├── readme.md ├── src └── main.rs ├── terse_cli ├── Cargo.toml └── lib.rs ├── terse_cli_lib ├── Cargo.toml └── lib.rs └── tests ├── main.rs └── test_cli_subcommand.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/example/Cargo.toml -------------------------------------------------------------------------------- /example/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/example/main.rs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/readme.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/src/main.rs -------------------------------------------------------------------------------- /terse_cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/terse_cli/Cargo.toml -------------------------------------------------------------------------------- /terse_cli/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/terse_cli/lib.rs -------------------------------------------------------------------------------- /terse_cli_lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/terse_cli_lib/Cargo.toml -------------------------------------------------------------------------------- /terse_cli_lib/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/terse_cli_lib/lib.rs -------------------------------------------------------------------------------- /tests/main.rs: -------------------------------------------------------------------------------- 1 | mod test_cli_subcommand; 2 | -------------------------------------------------------------------------------- /tests/test_cli_subcommand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffrayZhang/terse-cli/HEAD/tests/test_cli_subcommand.rs --------------------------------------------------------------------------------