├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── Makefile.md ├── README.md ├── src ├── bin │ └── cargo-list.rs └── lib.rs ├── t ├── LIBRARY.md └── README.md └── tests └── integration.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/Makefile.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/README.md -------------------------------------------------------------------------------- /src/bin/cargo-list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/src/bin/cargo-list.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/src/lib.rs -------------------------------------------------------------------------------- /t/LIBRARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/t/LIBRARY.md -------------------------------------------------------------------------------- /t/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/t/README.md -------------------------------------------------------------------------------- /tests/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtfkwk/cargo-list/HEAD/tests/integration.rs --------------------------------------------------------------------------------