Run cargo subcommands on all local packages

A tiny cargo subcommand for executing other subcommands on all "local" packages (ie. packages in the same repository). This allows running cargo test on all crates in a repo with a single command.

Example

This will run tests of all local crates (but see the notes below): cargo local-pkgs test

Notes