mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* 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>
28 lines
770 B
TOML
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 }
|