Add tool for visualizing crate hierarchy (#3315)

* Add tool for visualizing crate hierarchy

* Update crate structure

* Restructure crate viz and integrate crate into workspace

* Remove transitive dependency edges

* Move png / svg creation into the rust binary
This commit is contained in:
Dennis Kobert
2025-11-28 16:34:45 +01:00
committed by GitHub
parent 221c2e9b47
commit 406f3d93f3
13 changed files with 447 additions and 6 deletions

View File

@@ -0,0 +1,24 @@
[package]
name = "wgpu-executor"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
[dependencies]
# Local dependencies
core-types = { workspace = true }
raster-types = { workspace = true, features = ["wgpu"] }
graphene-application-io = { workspace = true, features = ["wgpu"] }
rendering = { workspace = true }
dyn-any = { workspace = true }
node-macro = { workspace = true }
# Workspace dependencies
glam = { workspace = true }
anyhow = { workspace = true }
wgpu = { workspace = true }
futures = { workspace = true }
web-sys = { workspace = true }
winit = { workspace = true }
vello = { workspace = true }
bytemuck = { workspace = true }