mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* RFC: Fine Grained Context Caching * Fix typos * Fix label * Add description of inject traits * Explicitly support context modification * Start implementation of context invalidation * Add inject trait variants * Route Extract / Inject traits to the proto nodes * Implement context dependency analysis * Implement context modification node insertion * Fix erronous force graph run message * Fix Extract* Inject* annotations in the nodes * Require Hash implementation for VarArgs * Fix nullification node insertion * Cross of done items unresolved questions section * Update Cargo.lock * Fix context features propagation * Update demo artwork * Remove BondlessFootprint and FreezeRealTime nodes * Fix migration * Add migrations for adding context features to old networks * Always update real time regardless of animation state * Cargo fmt * Fix tests * Readd sed command to hopefully fix profile result parsing * Add debug output to profiling pr * Use new totals instead of summaries for for iai results * Even more debugging * Use correct debug metrics (hopefully) * Add more MemoNode implementations * Add context features annotation to shader node macro * Cleanup * Time -> RealTime * Code review --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "graphene-core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "API definitions for Graphene"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
nightly = []
|
|
type_id_logging = []
|
|
wgpu = ["dep:wgpu"]
|
|
dealloc_nodes = []
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graphene-core-shaders = { workspace = true, features = ["std"] }
|
|
|
|
# Workspace dependencies
|
|
bitflags = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
node-macro = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
rand = { workspace = true }
|
|
glam = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
petgraph = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
dyn-any = { workspace = true }
|
|
ctor = { workspace = true }
|
|
rand_chacha = { workspace = true }
|
|
specta = { workspace = true }
|
|
image = { workspace = true }
|
|
tinyvec = { workspace = true }
|
|
parley = { workspace = true }
|
|
skrifa = { workspace = true }
|
|
kurbo = { workspace = true }
|
|
lyon_geom = { workspace = true }
|
|
log = { workspace = true }
|
|
base64 = { workspace = true }
|
|
poly-cool = { workspace = true }
|
|
|
|
# Optional workspace dependencies
|
|
serde = { workspace = true, optional = true }
|
|
wgpu = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
# Workspace dependencies
|
|
tokio = { workspace = true }
|
|
serde_json = { workspace = true }
|