smoltcp 0.14.0

A TCP/IP stack designed for bare-metal, real-time systems without a heap.
Documentation
on:
  pull_request:
  merge_group:

name: Fuzz

jobs:
  fuzz:
    runs-on: ubuntu-22.04
    env:
      RUSTUP_TOOLCHAIN: nightly
    steps:
      - uses: actions/checkout@v4
      - name: Install cargo-fuzz
        run: cargo install cargo-fuzz
      - name: Build all fuzz targets
        run: cargo fuzz build
      - name: Build all fuzz targets (with log feature)
        run: cargo fuzz build --features log
      - name: Fuzz
        run: cargo fuzz run packet_parser -- -max_len=1536 -max_total_time=30