mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-03 21:08:18 +00:00

* Update to rust 2024 edition * Fixes * Clean up imports * Cargo fmt again --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
21 lines
526 B
TOML
21 lines
526 B
TOML
[package]
|
|
name = "gpu-compiler-bin-wrapper"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
profiling = []
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graph-craft = { path = "../../graph-craft", features = ["serde", "wgpu"] }
|
|
gpu-executor = { path = "../../gpu-executor" }
|
|
wgpu-executor = { path = "../../wgpu-executor" }
|
|
|
|
# Workspace dependencies
|
|
log = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|