prollytree 0.1.0-alpha

A prolly (probabilistic) tree for efficient storage, retrieval, and modification of ordered data.
Documentation
name: CI

on: [push, pull_request]

jobs:
  test:
    strategy:
      matrix:
        feature_flags: ["no-default-features", "all-features"]
    runs-on: ubuntu-latest
    steps:
    
    - uses: actions/checkout@v2

    - name: fmt
      run: cargo fmt --all -- --check

    - name: build
      run: cargo build --verbose

    - name: test
      run: cargo test --verbose

    - name: build benchmarks
      run: cargo test --benches --no-run --verbose

    - name: clippy
      run: cargo clippy

    - name: docs
      run: cargo doc --document-private-items --no-deps