[package]
edition = "2021"
rust-version = "1.80"
name = "polyops"
version = "0.0.3"
authors = ["Samuel Opeyemi <samuel@fasteditor.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Martinez-Rueda polygon clipping algorithm: Boolean operations (intersection, union, difference, xor) over polygons and multipolygons. Rust port of martinez-polygon-clipping."
homepage = "https://github.com/trenchesdeveloper/PolyOps"
readme = "README.md"
keywords = [
"polygon",
"clipping",
"boolean",
"geometry",
"martinez",
]
categories = [
"algorithms",
"graphics",
"science::geo",
]
license = "MIT"
repository = "https://github.com/trenchesdeveloper/PolyOps"
[lib]
name = "polyops"
path = "src/lib.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.robust]
version = "1.1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"