flowgger 0.2.8

Flowgger is a fast, simple and lightweight data collector.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# This script takes care of testing your crate

set -ex

main() {
    if [ -z $DISABLE_TESTS ]; then
        cross test --target $TARGET --no-default-features --features "${FLOWGGER_FEATURES}"
    fi
}

main