Files
Graphite/node-graph/nodes/path-bool/Cargo.toml
jneem 58aae4f87b Replace the Boolean Operations node's algorithm with the Linesweeper library (#2670)
* Attempt one-shot n-ary ops

* Make it not crash

* Try to remove more path_bool

* Add quantization

* Update to latest

* Nits

* Code review

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
2026-03-10 22:00:49 -07:00

28 lines
770 B
TOML

[package]
name = "path-bool-nodes"
version = "0.1.0"
edition = "2024"
description = "Path boolean operation nodes for Graphene"
authors = ["Graphite Authors <contact@graphite.art>"]
license = "MIT OR Apache-2.0"
[features]
wasm = ["core-types/wasm", "tsify", "wasm-bindgen"]
[dependencies]
# Local dependencies
dyn-any = { workspace = true }
core-types = { workspace = true }
graphic-types = { workspace = true }
node-macro = { workspace = true }
glam = { workspace = true }
linesweeper = { workspace = true }
log = { workspace = true }
serde = { workspace = true }
smallvec = { workspace = true }
vector-types = { workspace = true }
# Optional workspace dependencies
tsify = { workspace = true, optional = true }
wasm-bindgen = { workspace = true, optional = true }