This is a tool to generate a Rust library to interact with exported functions from a Futhark file.
shell genfut <Rust lib name> <futhark_file.fut>
build.rs ```rust use genfut::genfut;
build.rs
fn main() { genfut("", "futhark_file.fut") }
```