pipebuf 0.3.2

Efficient byte-stream pipe buffer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# Install cargo-semver-checks first

if [ -z "$1" ]
then
    COMMAND="cargo semver-checks"
else
    COMMAND="cargo semver-checks --baseline-rev $1"
fi

./run-feature-combinations | while read FEATURES
do
    echo === $FEATURES

    $COMMAND --only-explicit-features --features "$FEATURES" || exit 1
done