embedded-hal 0.2.3

A Hardware Abstraction Layer (HAL) for embedded systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
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