geometry-kernel 1.0.3

A Rust-first geometry kernel for deterministic planar geometry operations
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 = "geometry-kernel"
version = "1.0.3"
authors = ["Birk Skyum <birk.skyum@pm.me>"]
build = false
include = [
    "/Cargo.toml",
    "/Cargo.lock",
    "/README.md",
    "/LICENSE-*",
    "/docs/**",
    "/src/**",
    "/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust-first geometry kernel for deterministic planar geometry operations"
homepage = "https://github.com/birkskyum/geometry-kernel"
documentation = "https://docs.rs/geometry-kernel"
readme = "README.md"
keywords = [
    "geometry",
    "geo",
    "wasm",
    "overlay",
    "buffer",
]
categories = [
    "algorithms",
    "science::geo",
    "wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/birkskyum/geometry-kernel"

[features]
default = ["pure-rust"]
geos-reference = ["dep:geos"]
pure-rust = []
wasm = [
    "dep:wasm-bindgen",
    "dep:console_error_panic_hook",
]

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

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

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

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

[dependencies.console_error_panic_hook]
version = "0.1"
optional = true

[dependencies.geos]
version = "10.0"
optional = true

[dependencies.robust]
version = "1.2"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

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

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