segmap 0.1.0

Map and set data structures whose keys are stored as ranges. Contiguous and overlapping ranges that map to the same value are coalesced into a single range. Originated as a fork of Jeff Parsons' "rangemap"
Documentation
name: CI

on:
  push:
    branches: [ master ]
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        toolchain:
          # Don't forget to update the README when bumping MSRV.
          - 1.43.0
          - stable
          - beta
          - nightly
        os:
          - ubuntu-latest
          - macos-latest
          - windows-latest
    steps:
      - name: checkout
        uses: actions/checkout@v2
      - name: install toolchain
        uses: actions-rs/toolchain@v1
        with:
            toolchain: ${{ matrix.toolchain }}
            default: true
            profile: minimal
      - name: stable test
        uses: actions-rs/cargo@v1
        if: matrix.toolchain != 'nightly'
        with:
          command: test
      - name: nightly test
        uses: actions-rs/cargo@v1
        if: matrix.toolchain == 'nightly'
        with:
          command: test
          args: --features nightly