[package]
name = "ringkernel-wgpu"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true
description = "WebGPU backend for RingKernel - cross-platform GPU support"
keywords = ["gpu", "actor", "webgpu", "wgpu", "vulkan"]
categories = ["hardware-support", "web-programming"]
readme = "README.md"
[dependencies]
ringkernel-core = { workspace = true }
wgpu = { version = "0.19", optional = true }
tokio = { workspace = true }
async-trait = { workspace = true }
futures = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
parking_lot = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["test-util", "macros", "rt-multi-thread"] }
[features]
default = []
wgpu = ["dep:wgpu"]
wgpu-tests = ["wgpu"]