[][src]Crate genfut

Genfut

This is a tool to generate a Rust library to interact with exported functions from a Futhark file.

Usage

As an executable binary

genfut <Rust lib name> <futhark_file.fut>

As a library

build.rs

use genfut::genfut;

fn main() {
    genfut("<Rust lib name>", "futhark_file.fut")
}

Functions

genfut