Files
Graphite/node-graph/wgpu-executor/Cargo.toml
Firestar99 34dced38ba Make gcore a std library and remove std, alloc, and more unused features (#2724)
* gcore: remove features `std`, `alloc`, `gpu` and `reflections`, now always available

* gcore: remove non-working features `kurbo` and `log`
2025-06-19 20:28:17 -07:00

27 lines
648 B
TOML

[package]
name = "wgpu-executor"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
[features]
default = []
profiling = []
passthrough = []
[dependencies]
# Workspace dependencies
graphene-core = { workspace = true, features = ["wgpu"] }
dyn-any = { workspace = true, features = ["log-bad-types", "rc", "glam"] }
node-macro = { workspace = true }
glam = { workspace = true }
anyhow = { workspace = true }
wgpu = { workspace = true, features = [
"spirv",
"strict_asserts",
] }
futures = { workspace = true }
web-sys = { workspace = true, features = ["HtmlCanvasElement"] }
winit = { workspace = true }
vello = { workspace = true }