embedded-hal 0.2.3

A Hardware Abstraction Layer (HAL) for embedded systems
Documentation
1
2
3
4
5
6
7
8
9
set -euxo pipefail

main() {
    if [ $TARGET != x86_64-unknown-linux-gnu ]; then
        rustup target add $TARGET
    fi
}

main