12 lines
472 B
YAML
12 lines
472 B
YAML
---
|
|
- name: Install Rust (via rustup)
|
|
ansible.builtin.shell: yes | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs
|
|
args:
|
|
creates: "{{ ansible_env.HOME }}/.cargo/bin/rustc"
|
|
|
|
- name: Install bininstall
|
|
ansible.builtin.shell: yes | curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh
|
|
|
|
- name: Install bininstall
|
|
ansible.builtin.shell: yes | cargo binstall dioxus-cli
|