Hi
Is it possible to provide support for specifying multiple crates for installation? for ex:
- name: Install cargo-get
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-get
- name: Install cargo-edit
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-edit
It would be shorter to do this:
- name: Install cargo bins
uses: baptiste0928/cargo-install@v3
with:
crates:
- crate: cargo-get
- crate: cargo-edit
Hi
Is it possible to provide support for specifying multiple crates for installation? for ex:
It would be shorter to do this: