A library and cargo subcommand to conveniently integrate Futhark into Rust projects.
First, install the command-line tool:
sh
cargo install cargo-futhark
Then create your new app (skip if it already exists):
sh
cargo new --bin my-app
cd my-app
Create the Futhark package:
sh
cargo futhark new futhark-lib
And add it to your my-app/Cargo.toml
:
```toml
[package]
[workspace] members = ["futhark-lib"]
[dependencies] futhark-lib = { path = "futhark-lib" } ```
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:
sh
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.