basenc 0.2.3

Encoding and decoding hex, base64 and base32 with support for #[no_std].
Documentation
name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

  workflow_dispatch:

jobs:
  ci:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust:
          - stable
          - beta
          - nightly

    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Install toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: ${{ matrix.rust }}
          default: true

      - name: Run tests
        uses: actions-rs/cargo@v1
        with:
          command: test

      - name: Run proptest tests (Release)
        working-directory: proptest
        run: cargo test --release