Remove bench_streamer feature

This commit is contained in:
Michael Vines 2018-12-13 21:51:31 -08:00
parent d489cb1a8b
commit 9d0b7c6b31
3 changed files with 2 additions and 11 deletions

View File

@ -21,7 +21,6 @@ erasure = []
ipv6 = []
test = []
unstable = []
bench_streamer = []
[dependencies]
bincode = "1.0.0"

View File

@ -12,12 +12,8 @@ _() {
"$@"
}
# bench_streamer is disabled by default to speed up dev builds, enable it
# explicitly here to ensure it still passes clippy
FEATURES=bench_streamer
_ cargo fmt -- --check
_ cargo clippy -- --version
_ cargo clippy --features="$FEATURES" -- --deny=warnings
_ cargo clippy -- --deny=warnings
_ ci/audit.sh

View File

@ -23,11 +23,7 @@ if [[ $(ulimit -n) -lt $maxOpenFds ]]; then
}
fi
# bench_streamer is enabled by default to speed up dev builds, enable it
# explicitly here to ensure it still compiles
FEATURES=bench_streamer
_ cargo build --all --verbose --features="$FEATURES"
_ cargo build --all --verbose
_ cargo test --verbose --lib -- --nocapture --test-threads=1
# Run integration tests serially