pfctl 0.7.0

Library for interfacing with the Packet Filter (PF) firewall on macOS
Documentation
---
name: Rust linting
on:
  pull_request:
    paths:
      - .github/workflows/linting.yml
      - '**/*.rs'
  workflow_dispatch:
jobs:
  clippy-linting:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: actions-rs/toolchain@v1.0.6
        with:
          toolchain: stable
          profile: minimal
          components: clippy
          default: true

      - name: Clippy check
        env:
          RUSTFLAGS: --deny warnings
        run: cargo clippy --locked --all-targets