cargo-futhark

Crates.iocargo-futhark
lib.rscargo-futhark
version0.1.0
sourcesrc
created_at2023-07-23 21:58:33.771792
updated_at2023-07-23 21:58:33.771792
descriptionA library and cargo subcommand to integrate Futhark into Rust projects.
homepage
repositoryhttps://github.com/luleyleo/cargo-futhark
max_upload_size
id924038
size84,437
Leopold Luley (luleyleo)

documentation

README

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.

Related Work

Commit count: 45

cargo fmt