integer-encoding 3.0.4

varint+zigzag and fixedint integer encoding/decoding (https://developers.google.com/protocol-buffers/docs/encoding)
Documentation
on: [push, pull_request]

name: Actions CI

jobs:
  build_and_test:
    name: integer-encoding-rs
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - uses: actions-rs/cargo@v1
        with:
          command: test
          args: --features tokio_async
      - uses: actions-rs/cargo@v1
        with:
          command: test
          args: --features futures_async
      - uses: actions-rs/cargo@v1
        with:
          command: test
      - uses: actions-rs/cargo@v1
        with:
          command: build
          args: --examples