mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Multiple node outputs * Add new nodes * gcore use std by default to allow for testing * Allow multiple node outputs * Multiple outputs to frontend * Add ImageFrameNode to node registry * Minor cleanup * Basic transform implementation * Add some logging to image encoding * Fix ImageFrameNode * Add transform input to Imaginate node (#1014) * Add transform input to imaginate node * Force the resolution to be edited with no transform * Add transform to imaginate generation * Fix compilation --------- Co-authored-by: Keavon Chambers <keavon@keavon.com> * Add labels to node outputs * Fix seed; disable mask when transform is disconnected; add Imaginate tooltips * Rename 'Input Multiple' node to 'Input' * Code review * Replicate to Svelte * Show only the primary input chain in the Properties panel --------- Co-authored-by: Dennis Kobert <dennis@kobert.dev> Co-authored-by: Keavon Chambers <keavon@keavon.com>
27 lines
856 B
TOML
27 lines
856 B
TOML
[package]
|
|
name = "interpreted-executor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde", "graphene-std/serde", "glam/serde"]
|
|
gpu = ["graphene-std/gpu", "graphene-core/gpu", "graphene-std/wgpu"]
|
|
quantization = ["graphene-std/quantization"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
graphene-core = { path = "../gcore", features = ["async", "std" ] }
|
|
graphene-std = { path = "../gstd" }
|
|
graph-craft = { path = "../graph-craft" }
|
|
dyn-any = { path = "../../libraries/dyn-any", features = ["log-bad-types", "glam"] }
|
|
num-traits = "0.2"
|
|
borrow_stack = { path = "../borrow_stack" }
|
|
dyn-clone = "1.0"
|
|
rand_chacha = "0.3.1"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
glam = { version = "0.22" }
|