circular-buffer 0.1.6

Efficient, fixed-size, overwriting circular buffer
Documentation
#!/bin/bash

set -ex

cargo test
cargo test --release

cargo +nightly test
cargo +nightly test --release

cargo +nightly test --features unstable
cargo +nightly test --features unstable --release

cargo build --no-default-features
cargo build --no-default-features --release

cargo +nightly build --no-default-features
cargo +nightly build --no-default-features --release

cargo +nightly build --no-default-features --features unstable
cargo +nightly build --no-default-features --features unstable --release

cargo clippy
cargo +nightly clippy
cargo +nightly clippy --features unstable
cargo clippy --no-default-features
cargo +nightly clippy --no-default-features
cargo +nightly clippy --no-default-features --features unstable