clipper2 0.6.0

A safe, idiomatic Rust API for 2D polygon boolean clipping (intersection, union, difference, XOR), offsetting (inflate/deflate), Minkowski sum/difference, simplification, area, and point-in-polygon, on top of Clipper2.
Documentation
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/

[graph]
all-features = true
# macroquad is used only by the examples in `examples/` and never
# ships in the published crate. Auditing dev-dependencies would
# block releases on advisories that cannot reach end users.
exclude-dev = true

[advisories]
# Opt into cargo-deny v2 advisory semantics: every RUSTSEC category
# (vulnerability, unsound, unmaintained, notice) is treated as an
# error by default rather than relying on per-severity opt-ins.
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
# Treat yanked crates as a hard error — yanking from crates.io is the
# author signalling 'do not depend on this version'.
yanked = "deny"
# Flag unmaintained advisories regardless of whether the affected
# crate is direct or transitive ('all' is the cargo-deny default but
# we set it explicitly so the policy is visible at a glance).
unmaintained = "all"
# Specific advisory IDs to suppress would go here, e.g. RUSTSEC-2020-0071
# Each entry should carry a reason in a comment so the suppression is
# auditable.
ignore = []

[licenses]
# Permissive licenses actually encountered in the Rust dependency
# graph. Kept tight on purpose: cargo-deny warns on entries that
# match nothing, which is how we notice when a future dependency
# pulls in a license the project has not opted into. New licenses
# get added here when, and only when, a real dep brings them in.
#
# The vendored Clipper2 C++ source pulled in transitively via the
# clipper2c-sys crate is BSL-1.0 (Boost Software License 1.0) and is
# documented in that crate's repository — cargo-deny only sees Rust
# crates, not the vendored C++ tree.
allow = [
  "MIT",
  "Apache-2.0",
  "Unicode-3.0",
]
confidence-threshold = 0.93
exceptions = []

[bans]
multiple-versions = "warn"
wildcards = "warn"
allow = []
deny = []
skip = []
skip-tree = []

[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []