[go: up one dir, main page]

mio 0.7.0

Lightweight non-blocking IO
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
jobs:
  # Check formatting
  - job: ${{ parameters.name }}
    displayName: Check rustfmt
    pool:
      vmImage: ubuntu-16.04
    steps:
      - template: azure-install-rust.yml
        parameters:
          rust_version: stable
      - script: |
          rustup component add rustfmt
        displayName: Install rustfmt
      - script: |
          cargo fmt --all -- --check
        displayName: Check formatting