mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* Update gpu nodes to compile again Restructure `gpu-executor` and `wgpu-executor` And libssl to nix shell Fix graphene-cli and add half percision color format Fix texture scaling Remove vulkan executor Fix compile errors Improve execution request deduplication * Fix warnings * Fix graph compile issues * Code review * Remove test file * Fix lint * Wip make node futures send * Make futures Send on non wasm targets * Fix warnings * Fix nested use of block_on --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
18 lines
580 B
TOML
18 lines
580 B
TOML
[package]
|
|
name = "compilation-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graph-craft = { path = "../graph-craft", features = ["serde"] }
|
|
gpu-executor = { path = "../gpu-executor" }
|
|
wgpu-executor = { path = "../wgpu-executor" }
|
|
gpu-compiler-bin-wrapper = { path = "../gpu-compiler/gpu-compiler-bin-wrapper" }
|
|
|
|
# Workspace dependencies
|
|
graphene-core = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
reqwest = { workspace = true, features = ["blocking", "json", "rustls-tls"] }
|