cargo-selector

Crates.iocargo-selector
lib.rscargo-selector
version
sourcesrc
created_at2024-04-11 08:46:07.616019
updated_at2024-12-13 01:28:26.884702
descriptionCargo subcommand to select and execute binary/example targets
homepagehttps://github.com/lusingander/cargo-selector
repositoryhttps://github.com/lusingander/cargo-selector
max_upload_size
id1204600
Cargo.toml error:TOML parse error at line 24, column 1 | 24 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Kyosuke Fujimoto (lusingander)

documentation

README

cargo-selector

Crate Status

Cargo subcommand to select and execute binary/example targets

(This demo uses Ratatui as an example!)

Installation

$ cargo install cargo-selector

AUR

$ paru -S cargo-selector

Usage

Usage: cargo selector [OPTIONS]

Options:
  -i, --inline                   Display list inline
  -n, --inline-list-size <SIZE>  List size [default: 10]
  -k, --kind <NAME>              Target kind [possible values: bin, example]
  -t, --match-type <TYPE>        Match type [default: substring] [possible values: substring, fuzzy]
  -h, --help                     Print help
  -V, --version                  Print version

Run the command in the cargo project directory:

$ cargo selector

Then, target list will be displayed, and you can execute the following command by selecting it.

# if the target is bin
$ cargo run --bin xyz [--features "foo bar"]

# if the target is example
$ cargo run --example xyz [--features "foo bar"]

By switching the action, you can also run only the build.

Keybindings

Key Description
Down Ctrl+n cursor down
Up Ctrl+p cursor up
Enter execute cargo run --bin/example <selected>
Tab switch actions
Esc Ctrl+c quit

License

MIT

Commit count: 54

cargo fmt