Note: The original codebase was taken from the cargo open project, and was adapted to work for listing source files instead.
cargo local
A third-party cargo extension that lists local source locations of dependencies.
Installing
You can install the tool from crates.io by running:
This will install the executable cargo-local in your cargo bin directory, which on *nix systems would be ~/.cargo/bin. You should add that directory to your PATH.
Usage
After installing, you should be able to go to any cargo project's root directory and run the following command:
This will output a list of all of the dependencies' source locations, or at least the ones that exist in the filesystem. If you provide a list of package names, the tool will show the location of only those. Example output:
You can run the command with --only-names to list package names alone -- useful for generating shell completion, for instance:
On its own, this isn't super interesting, but it can be used as a component in other tools like shell scripts. A few examples follow:
cargo-open
The project that this codebase was more-or-less copied from can be more-or-less implemented like so:
A longer script that handles errors might look like this:
#! /bin/sh
if [; then
fi
_subcommand= # ignore the "open" subcommand
package=
path=
status=
if [; then
fi
cargo-tags
The original plan for this fork. A tool like this already exists as rusty-tags, but it's easy to do something similar with a one-liner: ctags -o Cargo.tags -R $(cargo local). A longer script with error handling:
#! /bin/sh
sources=
status=
if [; then
fi
|
Contributing
You can run the tool locally by executing cargo run local. Note the subcommand -- it's necessary, because it would ordinarily be called as cargo local.
If you'd like to run it on a different directory, you can either install the local program with cargo install --path . --force, or you can find the compiled binary in target/debug/cargo-local, and run it by using the full path to the executable.
If you've made a change that's useful to you, consider preparing a pull request on github. If you've found a bug or are not sure how to implement a particular feature, feel free to open an issue and ask for help.