[package]
edition = "2024"
rust-version = "1.85"
name = "geometry-adapt"
version = "0.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adapters and registration macros for foreign point/linestring/polygon types."
readme = "README.md"
keywords = [
"geometry",
"gis",
"spatial",
"boost",
"computation",
]
categories = [
"science::geo",
"algorithms",
"mathematics",
"no-std",
]
license = "BSL-1.0"
license-file = "LICENSE"
repository = "https://github.com/pentatonick/boost_geometry"
[features]
default = ["std"]
libm = [
"geometry-coords/libm",
"geometry-trait/libm",
]
std = [
"geometry-coords/std",
"geometry-cs/std",
"geometry-trait/std",
]
[lib]
name = "geometry_adapt"
path = "src/lib.rs"
[[test]]
name = "adapt"
path = "tests/adapt.rs"
[[test]]
name = "register"
path = "tests/register.rs"
[dependencies.geometry-coords]
version = "0.0.3"
default-features = false
[dependencies.geometry-cs]
version = "0.0.3"
default-features = false
[dependencies.geometry-tag]
version = "0.0.3"
[dependencies.geometry-trait]
version = "0.0.3"
default-features = false
[dev-dependencies]
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"