simple-tlv 0.1.0

Encoding and decoding of SIMPLE-TLV as described in ISO 7816-4, without allocations.
Documentation
name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        features:
          - alloc
          - heapless
          - std
          - alloc,derive
          - heapless,derive
          - std,derive

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

    - name: Install Rust toolchain
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        profile: minimal

    - name: Test with a feature subset
      uses: actions-rs/cargo@v1
      with:
        command: test
        args: --features ${{ matrix.features }} --verbose