This is a tool to generate a rust libary 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") }
```