fastvlq 1.1.1

A fast variant of Variable-Length Quantity with a focus on speed and no_std support.
Documentation
name: CI
on: [push, pull_request]

jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
        rust: [stable, beta, nightly]
    steps:
      - uses: actions/checkout@v2
      - name: Install Rust toolchain
        uses: actions-rs/toolchain@v1
        with:
          toolchain: ${{ matrix.rust }}
          override: true
      - name: Run tests (no_std)
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --tests --no-default-features
      - name: Run tests (std)
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --tests