[package]
edition = "2024"
rust-version = "1.85"
name = "geometry-cs"
version = "0.0.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Coordinate system types: Cartesian, Spherical, Geographic, and angle units."
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"]
std = ["geometry-coords/std"]
[lib]
name = "geometry_cs"
path = "src/lib.rs"
[[test]]
name = "conversion"
path = "tests/conversion.rs"
[dependencies.geometry-coords]
version = "0.0.5"
default-features = false
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"