#!/usr/bin/env bash
set -ex

# A simple build script to run locally.

cargo +stable  build --verbose;

cargo +nightly test --verbose;
cargo +nightly test --verbose --no-default-features;

cargo +stable  doc --verbose;
cargo +nightly doc --verbose;
