#!/usr/bin/env bash

set -e
set -x

cargo clippy --all-targets
cargo clippy --all-targets --all-features
cargo test "$@"
cargo test --all-features "$@"

exit 0
