mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-23 23:48:11 +08:00
* Refactor Graphite dependency management * Remove deprecated future executor * Code review nits * Remove unused dependencies * Update dependencies and make compile with all features * Replace use of future_executor with wasm-bindgen-futures --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
21 lines
811 B
TOML
21 lines
811 B
TOML
[package]
|
|
name = "bezier-rs"
|
|
version = "0.2.0"
|
|
rust-version = "1.66.0"
|
|
edition = "2021"
|
|
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]
|
|
glam = { version = "0.24", features = ["serde"] }
|
|
|
|
dyn-any = { workspace = true, optional = true }
|
|
serde = { workspace = true, optional = true }
|