heapless 0.3.4

`static` friendly data structures that don't require dynamic memory allocation
1
2
3
4
5
6
7
8
9
10
11
set -euxo pipefail

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

if [ $TRAVIS_BRANCH != master ]; then
    main
fi