#cargo #futhark #cargo-subcommand #api-bindings #bindgen

bin+lib cargo-futhark

A library and cargo subcommand to integrate Futhark into Rust projects

1 unstable release

0.1.0 Jul 23, 2023

#485 in Cargo plugins

MIT/Apache

50KB
1K SLoC

Cargo-Futhark integration

A library and cargo subcommand to conveniently integrate Futhark into Rust projects.

Usage

First, install the command-line tool:

cargo install cargo-futhark

Then create your new app (skip if it already exists):

cargo new --bin my-app
cd my-app

Create the Futhark package:

cargo futhark new futhark-lib

And add it to your my-app/Cargo.toml:

[package]
# package stuff ...

[workspace]
members = ["futhark-lib"]

[dependencies]
futhark-lib = { path = "futhark-lib" }

Examples

An example can be found in the examples directory. Not that they can not be run using cargo run --example. Instead use the following command:

cargo run --package simple-example

The examples/simple-lib package contains the Futhark code and the examples/simple package contains the Rust binary using it.

Dependencies

~8–19MB
~235K SLoC