Cargo Scripts

Cargo Scripts is a Visual Studio Code extension which allows you to run scripts in the sidebar according to the Cargo.toml .
Just like the scripts in NPM's package.json .
Usage
Adding a [package.metadata.scripts] section to the Cargo.toml .
The file name should be case sensitive, cannot be cargo.toml or CARGO.toml .
[package.metadata.scripts]
run = "cargo run"
check = "cargo check"
build = "cargo build"
release = "cargo build --release"
License
MIT License.
| |