nanobox 0.1.0

`NanoBox` optimization: store small item on stack and fallback to heap for large item.
Documentation
on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

name: NanoBox Continuous Integration

env:
  CARGO_TERM_COLOR: always
  CARGO_INCREMENTAL: 0

jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        include:
          - rust: nightly

    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: ${{ matrix.rust }}
          override: true
      - name: Tests
        run: |
          cargo test --verbose