[package]
edition = "2021"
name = "rustlane"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ISPC-style SPMD programming model for Rust: natural control flow lowered to masked SIMD by proc macros over nightly std::simd"
readme = "README.md"
keywords = [
"simd",
"spmd",
"ispc",
"parallel",
"vectorization",
]
categories = [
"hardware-support",
"concurrency",
]
license = "MIT"
repository = "https://github.com/byeongjee/rustlane"
[lib]
name = "rustlane"
path = "src/lib.rs"
[[test]]
name = "derive_semantics"
path = "tests/derive_semantics.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "kernel_semantics"
path = "tests/kernel_semantics.rs"
[[test]]
name = "lowering_contract"
path = "tests/lowering_contract.rs"
[dependencies.rustlane-macros]
version = "=0.1.0"