mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
* WIP * Start deprecating let nodes * Replace WasmEditorApi network imports with new Scope input * Add missing unwrap * Add #[serde(default)] to scope_injections * Restructure WasmEditorApi definition to be available as a TaggedValue * Fix text node * Use stable toolchain in nix shell again * Code review * FIx text node and remove all remaining warnings * Require executor input to be 'static --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
39 lines
1004 B
TOML
39 lines
1004 B
TOML
[package]
|
|
name = "wgpu-executor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
profiling = ["nvtx"]
|
|
passthrough = []
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
gpu-executor = { path = "../gpu-executor" }
|
|
|
|
# Workspace dependencies
|
|
graphene-core = { workspace = true, features = ["std", "alloc", "gpu"] }
|
|
dyn-any = { workspace = true, features = ["log-bad-types", "rc", "glam"] }
|
|
num-traits = { workspace = true }
|
|
log = { workspace = true }
|
|
glam = { workspace = true }
|
|
base64 = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
wgpu = { workspace = true, features = ["spirv"] }
|
|
spirv = { workspace = true }
|
|
futures = { workspace = true }
|
|
web-sys = { workspace = true, features = ["HtmlCanvasElement"] }
|
|
winit = { workspace = true }
|
|
|
|
# Required dependencies
|
|
futures-intrusive = "0.5.0"
|
|
|
|
# Optional workspace dependencies
|
|
serde = { workspace = true, optional = true }
|
|
|
|
# Optional dependencies
|
|
nvtx = { version = "1.3", optional = true }
|