self-replace 1.5.0

Utility crate that allows executables to replace or uninstall themselves
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Rustfmt

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@master
        with:
          toolchain: stable
          components: clippy, rustfmt
      - name: Run rustfmt
        run: make format-check