Remove unused Kurbo deps from editor and node-graph/gstd (#1335)

deps: Remove kurbo deps from editor, node-graph/gstd.

Co-authored-by: Bruce Mitchener <bruce.mitchener@configura.com>
This commit is contained in:
Bruce Mitchener 2023-07-29 07:21:36 +07:00 committed by Keavon Chambers
parent 59420cb5dd
commit 5c7dabf70e
3 changed files with 0 additions and 8 deletions

2
Cargo.lock generated
View file

@ -2021,7 +2021,6 @@ dependencies = [
"graphene-core",
"image",
"js-sys",
"kurbo",
"log",
"node-macro",
"reqwest",
@ -2097,7 +2096,6 @@ dependencies = [
"graphite-proc-macros",
"image",
"interpreted-executor",
"kurbo",
"log",
"num_enum 0.6.1",
"once_cell",

View file

@ -28,9 +28,6 @@ serde_json = { version = "1.0" }
graphite-proc-macros = { path = "../proc-macros" }
bezier-rs = { path = "../libraries/bezier-rs" }
glam = { version = "0.24", features = ["serde"] }
kurbo = { git = "https://github.com/linebender/kurbo.git", features = [
"serde",
] }
remain = "0.2.2"
derivative = "2.2.0"
once_cell = "1.13.0" # Remove when `core::cell::OnceCell` is stabilized (<https://doc.rust-lang.org/core/cell/struct.OnceCell.html>)

View file

@ -48,9 +48,6 @@ dyn-clone = "1.0"
log = "0.4"
bezier-rs = { path = "../../libraries/bezier-rs", features = ["serde"] }
kurbo = { git = "https://github.com/linebender/kurbo.git", features = [
"serde",
] }
glam = { version = "0.24", features = ["serde"] }
node-macro = { path = "../node-macro" }
xxhash-rust = { workspace = true }