mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* 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
24 lines
656 B
TOML
24 lines
656 B
TOML
[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 }
|