-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
39 lines (36 loc) · 1011 Bytes
/
Cargo.toml
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
34
35
36
37
38
39
[package]
name = "ispc"
version = "2.0.1"
edition = "2021"
authors = ["Will Usher <[email protected]>"]
homepage = "https://github.com/Twinklebear/ispc-rs"
documentation = "https://docs.rs/ispc/"
repository = "https://github.com/Twinklebear/ispc-rs"
readme = "README.md"
license = "MIT"
description = """
A build-time dependency for Cargo build scripts to help with compiling
and linking to ISPC code and generating Rust bindings for the resulting library.
This crate is a meta-crate for the ispc_compile and ispc_rt crates, which provide
the actual functionality for building ISPC code and generating bindings, and
importing those bindings into Rust.
"""
keywords = ["build-dependencies", "ispc", "simd"]
exclude = [
".travis.yml",
"*.png",
".gitignore",
".github",
"scripts/*",
"examples/*",
]
[dependencies]
ispc_compile = { path = "./compile/", version = "2.0.1" }
ispc_rt = { path = "./runtime/", version = "2.0.1" }
[workspace]
resolver = "2"
members = [
"compile",
"runtime",
"examples/*",
]