-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 853 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "cargo-futhark"
description = "A library and cargo subcommand to integrate Futhark into Rust projects."
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Leopold Luley <git@leopoldluley.de>"]
repository = "https://github.com/luleyleo/cargo-futhark"
keywords = ["cargo", "futhark", "bindgen"]
categories = [
"compilers",
"command-line-utilities",
"development-tools::build-utils",
"development-tools::cargo-plugins",
"api-bindings",
]
[workspace]
members = ["examples/simple", "examples/simple-lib"]
[dependencies]
bindgen = "0.72.1"
cc = "1.0.79"
clap = { version = "4.3.19", features = ["derive"] }
enumflags2 = { version = "0.7.7", features = ["std"] }
eyre = "0.6.8"
include_dir = "0.7.3"
proc-macro2 = "1.0.66"
quote = "1.0.31"
rerun_except = "1.0.0"
serde = "1.0.174"
serde_json = "1.0.103"