cv-core 0.5.0

Contains core primitives used in computer vision applications
Documentation
# This builds for thumbv6m-none-eabi to ensure we build with no-std.

on: [push, pull_request]

name: no-std

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          target: thumbv6m-none-eabi
          override: true
      - uses: actions-rs/cargo@v1
        with:
          use-cross: true
          command: build
          args: --release --target=thumbv6m-none-eabi