openstack 0.6.0

OpenStack SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- hosts: all

  tasks:
    - name: Install Rust
      shell: >
          curl https://sh.rustup.rs -sSf
          | sh -s -- -y --no-modify-path --default-toolchain {{ rustup_toolchain }}
      environment:
        RUSTUP_HOME: /usr
        CARGO_HOME: /usr
      become: yes

    - name: Use selected Rust toolchain
      command: rustup default {{ rustup_toolchain }}