qrcode-rs 0.2.0

QR code encoder in Rust,Generate QR Code matrices and images in RAW, PNG and SVG formats.
on:
  push:
    branches:
      - main

name: Docs

jobs:
  docs:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources
        uses: actions/checkout@v6
        with:
          submodules: 'recursive'
      - name: Install build dependencies
        run: |
          sudo apt update
          sudo apt install -y cmake libclang-dev
      - name: Install stable toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          toolchain: nightly
      - name: Run cargo doc
        run: cargo doc --no-deps --all-features