mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* Remove log statements * Add feature gates to functions in path.rs * Fix infinite parsing loop and add new test * License tweaks * Remove trailing zero in whole number floats * Flatten visual-tests directory * Code review * Clean up printlines * Add error handling to path parsing --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
46 lines
789 B
TOML
46 lines
789 B
TOML
[package]
|
|
name = "path-bool"
|
|
version = "0.1.0"
|
|
rust-version = "1.81"
|
|
authors = ["Graphite Authors <contact@graphite.rs>", "Adam Platkevič"]
|
|
edition = "2021"
|
|
keywords = [
|
|
"bezier",
|
|
"curve",
|
|
"boolean",
|
|
"path",
|
|
"geometry",
|
|
"computational geometry",
|
|
"vector graphics",
|
|
"2d",
|
|
"graphics",
|
|
]
|
|
categories = ["graphics", "mathematics"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
logging = ["parsing"]
|
|
parsing = []
|
|
default = ["parsing"]
|
|
|
|
[dependencies]
|
|
glam = "0.28.0"
|
|
regex = "1.10.6"
|
|
slotmap = "1.0.7"
|
|
|
|
[dev-dependencies]
|
|
glob = "0.3"
|
|
svg = "0.13"
|
|
resvg = "0.42"
|
|
image = "0.24"
|
|
|
|
# Required dependencies
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
# Benchmarks
|
|
[[bench]]
|
|
name = "painted_dreams"
|
|
harness = false
|
|
[[bench]]
|
|
name = "path_segment_intersection"
|
|
harness = false
|