Invalidate Caches based on the received input (#1067)

* Invalidate Caches based on the received input

* Add comments

* Fix missing *
This commit is contained in:
Dennis Kobert
2023-03-03 20:35:28 +01:00
committed by Keavon Chambers
parent ccb698ffa8
commit 4ea3802df1
3 changed files with 53 additions and 18 deletions
+3 -2
View File
@@ -19,7 +19,7 @@ quantization = ["autoquant"]
[dependencies]
autoquant = { git = "https://github.com/truedoctor/autoquant", optional = true, features = ["fitting"] }
graphene-core = {path = "../gcore", features = ["async", "std" ], default-features = false}
graphene-core = {path = "../gcore", features = ["async", "std", "serde" ], default-features = false}
borrow_stack = {path = "../borrow_stack"}
dyn-any = {path = "../../libraries/dyn-any", features = ["derive"]}
graph-craft = {path = "../graph-craft"}
@@ -38,12 +38,13 @@ image = "*"
dyn-clone = "1.0"
log = "0.4"
bezier-rs = { path = "../../libraries/bezier-rs" }
bezier-rs = { path = "../../libraries/bezier-rs" , features = ["serde"] }
kurbo = { git = "https://github.com/linebender/kurbo.git", features = [
"serde",
] }
glam = { version = "0.22", features = ["serde"] }
node-macro = { path="../node-macro" }
boxcar = "0.1.0"
[dependencies.serde]
version = "1.0"