pin-project 0.3.5

An attribute that creates a projection struct covering all the fields.
Documentation
jobs:
- job: ${{ parameters.name }}
  displayName: Rustfmt
  pool:
    vmImage: ubuntu-16.04

  steps:
    - template: azure-install-rust.yml
      parameters:
        rust: ${{ parameters.rust }}

    - script: |
        rustup component add rustfmt
        cargo fmt --version
      displayName: rustup component add rustfmt

    - script: cargo fmt --all -- --check
      displayName: cargo fmt --all -- --check