mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
23 lines
653 B
TOML
23 lines
653 B
TOML
[package]
|
|
name = "convex-hull-nodes"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Convex hull computation node for vector data"
|
|
authors = ["Graphite Authors <contact@graphite.art>"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
dyn-any = { workspace = true }
|
|
core-types = { workspace = true }
|
|
graphic-types = { workspace = true }
|
|
node-macro = { workspace = true }
|
|
glam = { workspace = true }
|
|
specta = { workspace = true }
|
|
log = { workspace = true }
|
|
path-bool = { workspace = true }
|
|
serde = { workspace = true }
|
|
vector-types = { workspace = true }
|
|
kurbo = { workspace = true }
|
|
convex_hull = { path = "../../../../convex_hull" }
|