ispc 2.0.4

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.
Documentation
[package]
name = "ispc"
version = "2.0.4"
edition = "2021"
authors = ["Will Usher <will@willusher.io>"]
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.4" }
ispc_rt = { path = "./runtime/", version = "2.0.4" }

[workspace]
resolver = "2"
members = [
	"compile",
	"runtime",
	"examples/*",
]