serde_bencode 0.2.4

A Serde backed Bencode encoding/decoding library for Rust.
Documentation
name: Benchmarking

on:
  push:
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  check:
    name: Benchmarking
    runs-on: ubuntu-latest

    strategy:
      matrix:
        toolchain: [nightly]

    steps:
      - id: checkout
        name: Checkout Repository
        uses: actions/checkout@v4

      - id: setup
        name: Setup Toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          toolchain: ${{ matrix.toolchain }}
          components: clippy

      - id: cache
        name: Enable Workflow Cache
        uses: Swatinem/rust-cache@v2

      - id: Benchmarking
        name: Run Benchmarking
        run: cargo bench