https://github.com/mise-plugins/asdf-cargo-make
cargo-make plugin for the asdf version manager
https://github.com/mise-plugins/asdf-cargo-make
asdf asdf-plugin task-runner
Last synced: 2 months ago
JSON representation
cargo-make plugin for the asdf version manager
- Host: GitHub
- URL: https://github.com/mise-plugins/asdf-cargo-make
- Owner: mise-plugins
- License: mit
- Created: 2022-10-20T18:25:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-29T03:01:18.000Z (11 months ago)
- Last Synced: 2025-04-06T05:02:02.323Z (2 months ago)
- Topics: asdf, asdf-plugin, task-runner
- Language: Shell
- Homepage:
- Size: 224 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# asdf-cargo-make
[](https://github.com/kachick/asdf-cargo-make/actions/workflows/build.yml?query=branch%3Amain) [](https://github.com/kachick/asdf-cargo-make/actions/workflows/lint.yml?query=branch%3Amain)
[cargo-make](https://sagiegurari.github.io/cargo-make/) plugin for the [asdf version manager](https://asdf-vm.com).\
Tested also [mise](https://github.com/jdx/mise).# Dependencies
- `asdf-vm` or `mise`
- `bash`, `curl`, `unzip`: generic POSIX utilities.This plugin requires `unzip` to be installed.
If you have a Debian system like Ubuntu, you can install it by typing
`sudo apt-get install unzip`.# Install
Plugin:
```shell
asdf plugin add cargo-make https://github.com/kachick/asdf-cargo-make.git
```[short-name is also available](https://github.com/asdf-vm/asdf-plugins/blob/6498384c22a29602d065d3db681b8f32f7e4295b/plugins/cargo-make#L1) if you turn off [disable_plugin_short_name_repository](https://asdf-vm.com/manage/configuration.html#disable-plugin-short-name-repository)
```shell
asdf plugin add cargo-make
```cargo-make:
```shell
# Show all installable versions
asdf list-all cargo-make# Install specific version
asdf install cargo-make latest# NOTE: This plugin supports only cargo-make 0.16.0+
# Set a version globally (on your ~/.tool-versions file)
asdf global cargo-make latest# Now cargo-make commands are available
cargo-make make --help
# Latest versions have `makers` command too
makers --version
```Check [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to
install & manage versions.# Contributing
Contributions of any kind welcome! See the [contributing guide](CONTRIBUTING.md).
# License
See [LICENSE](LICENSE)