cty 0.2.0

Type aliases to C types like c_int for use with bindgen
Documentation
1
2
3
4
5
6
7
8
9
10
set -ex

main() {
    for target in $(rustup target list | grep linux-gnu | cut -d' ' -f1); do
        rustup target add $target || continue
        cargo check --target $target
    done
}

main