[package]
edition = "2021"
rust-version = "1.70"
name = "tess2-rust"
version = "1.0.0"
build = false
exclude = [
"demo/",
".github/",
".claude/",
".cursor/",
"trace_output*",
"package.json",
"CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust port of libtess2 — complete SGI polygon tessellation pipeline with winding rules, self-intersections, and multiple output modes"
homepage = "https://larsbrubaker.github.io/tess2-rust/"
documentation = "https://docs.rs/tess2-rust"
readme = "README.md"
keywords = [
"tessellation",
"polygon",
"graphics",
"2d",
"geometry",
]
categories = [
"graphics",
"algorithms",
]
license = "MIT"
repository = "https://github.com/larsbrubaker/tess2-rust"
[lib]
name = "tess2_rust"
path = "src/lib.rs"
[[test]]
name = "cdt"
path = "tests/cdt.rs"
[[test]]
name = "complex_polygons"
path = "tests/complex_polygons.rs"
[[test]]
name = "element_types"
path = "tests/element_types.rs"
[[test]]
name = "file_compliance"
path = "tests/file_compliance.rs"
[[test]]
name = "libtess2_port"
path = "tests/libtess2_port.rs"
[[test]]
name = "output_correctness"
path = "tests/output_correctness.rs"
[[test]]
name = "poly_size"
path = "tests/poly_size.rs"
[[test]]
name = "three_d"
path = "tests/three_d.rs"
[[test]]
name = "winding_rules"
path = "tests/winding_rules.rs"
[dependencies]
[dev-dependencies]