mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* graph-craft: fix direct wasm build * graph-craft: fix no serde feature failing to compile * graph-craft: make wgpu-executor properly optional * workspace: unify `image` formats in workspace * workspace: turn most dependencies into workspace deps, no actual changes * workspace: unify dependency features in workspace dep
25 lines
944 B
TOML
25 lines
944 B
TOML
[package]
|
|
name = "bezier-rs"
|
|
version = "0.4.0"
|
|
rust-version = "1.85"
|
|
edition = "2024"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
description = "Computational geometry algorithms for Bézier segments and shapes useful in the context of 2D graphics"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
keywords = ["bezier", "curve", "geometry", "2d", "graphics"]
|
|
categories = ["graphics", "mathematics"]
|
|
homepage = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/bezier-rs"
|
|
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/bezier-rs"
|
|
documentation = "https://graphite.rs/libraries/bezier-rs/"
|
|
|
|
[dependencies]
|
|
# Required dependencies
|
|
glam = { workspace = true }
|
|
|
|
# Optional local dependencies
|
|
dyn-any = { version = "0.3.0", path = "../dyn-any", optional = true }
|
|
|
|
# Optional workspace dependencies
|
|
kurbo = { workspace = true, optional = true }
|
|
serde = { workspace = true, optional = true }
|