u-geometry 0.1.0

Domain-agnostic computational geometry: primitives, polygons, NFP, collision detection, spatial indexing.
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 = "u-geometry"
version = "0.1.0"
authors = ["iyulab"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain-agnostic computational geometry: primitives, polygons, NFP, collision detection, spatial indexing."
readme = "README.md"
keywords = [
    "geometry",
    "polygon",
    "spatial",
    "nfp",
]
categories = [
    "algorithms",
    "mathematics",
]
license = "MIT"
repository = "https://github.com/iyulab/u-geometry"

[features]
default = []
serde = [
    "dep:serde",
    "nalgebra/serde-serialize",
]
wasm = [
    "dep:wasm-bindgen",
    "dep:serde-wasm-bindgen",
    "serde",
]

[lib]
name = "u_geometry"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

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

[dependencies.nalgebra]
version = "0.33"

[dependencies.robust]
version = "1.1"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

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

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

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

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