Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
criterion 0.2.1 - Docs.rs
[go: Go Back, main page]

criterion 0.2.1

Statistics-driven micro-benchmarking library
Documentation
set -ex

if [ "$CLIPPY" = "yes" ]; then
  cargo install clippy --force --vers $CLIPPY_VERSION
fi

if [ "$DOCS" = "yes" ]; then
    cargo install mdbook --force
fi

if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$GNUPLOT" = "yes" ]; then
    brew update
    brew install gnuplot
fi

if [ "$COVERAGE" = "yes" ]; then
    curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh | bash
fi

if [ "$RUSTFMT" = "yes" ]; then
    rustup component add rustfmt-preview
fi