f3 0.4.0

Board Support Crate for the STM32F3DISCOVERY
Documentation
set -ex

main() {
    local tag=$(git ls-remote --tags --refs --exit-code https://github.com/japaric/cross \
                    | cut -d/ -f3 \
                    | grep -E '^v0.1.[0-9]+$' \
                    | sort --version-sort \
                    | tail -n1)

    curl -LSfs https://japaric.github.io/trust/install.sh | \
        sh -s -- \
           --force \
           --git japaric/cross \
           --tag $tag \
           --target x86_64-unknown-linux-musl
}

main