embedded-hal 0.2.0

A Hardware Abstraction Layer (HAL) for embedded systems
Documentation
set -euxo pipefail

main() {
    cargo check --target $TARGET
    cargo check --target $TARGET --features unproven

    if [ $TRAVIS_RUST_VERSION = nightly ]; then
        cargo test --target $TARGET --features unproven
    fi
}

main