mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Reorganize cargo dependencies and upgrade most * cargo update * Attempt 2 * Polishing changes * Comment out specta typescript flag-dependent code * Fix test
21 lines
469 B
TOML
21 lines
469 B
TOML
[package]
|
|
name = "gpu-compiler-bin-wrapper"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
profiling = []
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graph-craft = { path = "../../graph-craft", features = ["serde"] }
|
|
gpu-executor = { path = "../../gpu-executor" }
|
|
|
|
# Workspace dependencies
|
|
log = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|