[package]
edition = "2024"
name = "unit-sphere"
version = "1.0.1"
authors = ["Ken Barker <ken.barker@via-technology.aero>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for performing geometric calculations on the surface of a sphere."
homepage = "https://github.com/kenba/unit-sphere-rs"
documentation = "https://docs.rs/unit-sphere/"
readme = "README.md"
keywords = [
"geometry",
"navigation",
"sphere",
]
categories = [
"mathematics",
"no-std",
"science",
]
license = "MIT"
repository = "https://github.com/kenba/unit-sphere-rs"
[lib]
name = "unit_sphere"
path = "src/lib.rs"
[dependencies.angle-sc]
version = "1.1"
[dependencies.nalgebra]
version = "0.34"
[dependencies.serde]
version = "1.0"
features = ["derive"]
default-features = false
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.serde_json]
version = "1.0"
[lints.clippy]
enum_glob_use = "deny"
nursery = "deny"
pedantic = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"