#workspace #run #targets #cargo #binary #multiple #workflow

app cargo-run-selectable

A simple Rust utility that helps developers run cargo run in workspaces with multiple binary targets without needing to specify one beforehand. When you run the program, it will prompt you to select a target from the list of available binary targets in the workspace.

2 releases

0.1.1 Aug 18, 2024
0.1.0 Aug 18, 2024

#220 in Development tools

Download history 203/week @ 2024-08-18 9/week @ 2024-08-25 1/week @ 2024-09-01

213 downloads per month

MIT license

5KB

cargo-run-selectable

A simple Rust utility that helps developers run cargo run in workspaces with multiple binary targets without needing to specify one beforehand. When you run the program, it will prompt you to select a target from the list of available binary targets in the workspace.

Features

  • Very lightweight
  • Seamless integration with Cargo workflows.
  • Works out of the box

Windows Incompatibility

Important: This utility is currently incompatible with Windows due to the lack of support for the process::CommandExt trait's exec method on the Windows platform. The exec method is crucial for replacing the current process with a new one, which is not natively supported in Windows. For more details on this limitation, you can refer to this explanation.

As a result, this utility is best suited for Unix-like operating systems such as Linux and macOS.

Installation

You can install this utility directly from crates.io using cargo or binstall.

Using cargo install:

cargo install cargo-run-selectable

Using cargo binstall:

cargo binstall cargo-run-selectable

Cloning from repository:

git clone https://github.com/maciejlewandowskii/cargo-run-selectable
cd cargo-run-selectable
cargo build --release # now you can copy file from target/release and just use it 

Dependencies

~1.6–9MB
~82K SLoC