bindgen.sh
1 #!/usr/bin/bash 2 3 bindgen \ 4 --use-core \ 5 --no-layout-tests \ 6 --no-copy '.*' \ 7 --no-debug '.*' \ 8 --allowlist-item "crypton_.*" \ 9 ./crypton_bits.h \ 10 -o src/bindings.rs
1 #!/usr/bin/bash 2 3 bindgen \ 4 --use-core \ 5 --no-layout-tests \ 6 --no-copy '.*' \ 7 --no-debug '.*' \ 8 --allowlist-item "crypton_.*" \ 9 ./crypton_bits.h \ 10 -o src/bindings.rs