riptree2 0.9.0

riptree2 is a Rust rewrite of the Unix tree command. It aims to be a drop in replacement (`alias tree="rt --compat"`) with some quality of life improvements, such as automatically respecting ignore files.
Documentation
name: QA

on:
  push:

jobs:
  tests:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout main
        uses: actions/checkout@v4
      - name: Setup Rust
        run: |
          rustup update stable && rustup default stable
      - name: Run tests
        run: |
          cargo test
      - name: Check formatting
        run: |
          cargo fmt --check
      - name: Check with Clippy
        run: |
          cargo clippy -- -D warnings
      - name: Run benchmarks
        continue-on-error: true # TODO: Remove this - benchmark snapshots are currently failing
        run: |
          cargo bench