spade 2.15.1

Delaunay triangulations for the rust ecosystem
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 = "2021"
name = "spade"
version = "2.15.1"
authors = ["Stefan Altmayer <stoeoef@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Delaunay triangulations for the rust ecosystem"
documentation = "https://docs.rs/spade"
readme = "README.md"
keywords = [
    "Delaunay",
    "CDT",
    "geometry",
    "triangulation",
    "voronoi",
]
categories = [
    "algorithms",
    "data-structures",
    "graphics",
    "mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Stoeoef/spade"

[features]
default = ["std"]
std = []

[lib]
name = "spade"
path = "src/lib.rs"
bench = false

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

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

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

[dependencies.hashbrown]
version = "0.16.1"

[dependencies.mint]
version = "0.5.9"
optional = true
default-features = false
package = "mint"

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

[dependencies.robust]
version = "1.2.0"

[dependencies.serde]
version = "1.0.219"
features = [
    "derive",
    "alloc",
]
optional = true
default-features = false
package = "serde"

[dependencies.smallvec]
version = "1.15.1"

[dev-dependencies.anyhow]
version = "1.0.99"

[dev-dependencies.approx]
version = "0.5.1"

[dev-dependencies.base64]
version = "0.22.1"

[dev-dependencies.cgmath]
version = "0.18.0"

[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]

[dev-dependencies.image]
version = "0.25.6"

[dev-dependencies.proptest]
version = "1.7.0"

[dev-dependencies.rand]
version = "0.10.0"

[dev-dependencies.shapefile]
version = "0.8.0"

[dev-dependencies.svg]
version = "0.18.0"

[dev-dependencies.tiny-skia]
version = "0.12.0"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]