[package]
edition = "2021"
rust-version = "1.75"
name = "ringkernel-derive"
version = "0.4.0"
authors = ["Michael Ivertowski <mivertowski@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for RingKernel GPU-native actor system"
homepage = "https://github.com/mivertowski/RustCompute"
readme = "README.md"
keywords = [
"gpu",
"actor",
"macro",
"derive",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "Apache-2.0"
repository = "https://github.com/mivertowski/RustCompute"
[features]
cuda-codegen = ["dep:ringkernel-cuda-codegen"]
default = []
[lib]
name = "ringkernel_derive"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "macro_tests"
path = "tests/macro_tests.rs"
[dependencies.darling]
version = "0.20"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.ringkernel-cuda-codegen]
version = "0.4.0"
optional = true
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
]
[dev-dependencies.bytemuck]
version = "1.14"
features = ["derive"]
[dev-dependencies.inventory]
version = "0.3"
[dev-dependencies.ringkernel-core]
version = "0.4.0"
[dev-dependencies.rkyv]
version = "0.7"
features = [
"validation",
"strict",
]
[dev-dependencies.tokio]
version = "1.48"
features = [
"full",
"macros",
"rt-multi-thread",
]