earcut 0.4.8

A Rust port of the Earcut polygon triangulation library
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "earcut"
version = "0.4.8"
authors = ["Taku Fukada <naninunenor@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust port of the Earcut polygon triangulation library"
readme = "README.md"
categories = [
    "graphics",
    "science",
    "no-std",
]
license = "ISC"
repository = "https://github.com/ciscorn/earcut-rs"

[lib]
name = "earcut"
path = "src/lib.rs"

[[example]]
name = "example"
path = "examples/example.rs"

[[test]]
name = "fixture"
path = "tests/fixture.rs"

[[test]]
name = "simple"
path = "tests/simple.rs"

[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false

[dependencies.num-traits]
version = "0.2"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.serde]
version = "1.0"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0"
features = ["float_roundtrip"]

[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"