Unify feature dependencies with workspace dependencies (#2736)

* graph-craft: fix direct wasm build

* graph-craft: fix no serde feature failing to compile

* graph-craft: make wgpu-executor properly optional

* workspace: unify `image` formats in workspace

* workspace: turn most dependencies into workspace deps, no actual changes

* workspace: unify dependency features in workspace dep
This commit is contained in:
Firestar99
2025-06-22 01:26:25 +02:00
committed by GitHub
parent 990d5b37cf
commit ca5ca863cc
22 changed files with 151 additions and 143 deletions

View File

@@ -20,18 +20,18 @@ gpu = [
[dependencies]
# Local dependencies
graphene-std = { path = "../gstd", features = ["serde"] }
interpreted-executor = { path = "../interpreted-executor" }
graphene-core = { workspace = true }
graphene-std = { workspace = true, features = ["serde"] }
interpreted-executor = { workspace = true }
graph-craft = { workspace = true, features = ["loading"] }
# Workspace dependencies
log = { workspace = true }
graph-craft = { workspace = true, features = ["loading"] }
graphene-core = { workspace = true }
futures = { workspace = true }
fern = { workspace = true }
chrono = { workspace = true }
wgpu = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tokio = { workspace = true, features = ["rt-multi-thread"] }
# Required dependencies
clap = { version = "4.5.31", features = ["cargo", "derive"] }