[package]
edition = "2021"
rust-version = "1.75"
name = "pamoja-kit"
version = "0.1.13"
authors = ["molexxxx"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Goal-named helper math for the pamoja device SDK: smoothing/filtering, calibration and units, PID and on/off control, prediction and anomaly detection, rolling stats, wheel kinematics (differential, Ackermann, skid-steer, mecanum), odometry, waypoint guidance, motion safety, and geo/IMU/weather helpers; no_std-friendly."
readme = "README.md"
license = "MIT"
repository = "https://github.com/molexxxx/pamoja"
[features]
default = [
"geo",
"imu",
"weather",
"robotics",
]
geo = ["dep:libm"]
imu = ["dep:libm"]
robotics = ["dep:libm"]
weather = ["dep:libm"]
[lib]
name = "pamoja_kit"
path = "src/lib.rs"
[dependencies.libm]
version = "0.2"
optional = true
[lints.clippy]
all = "warn"
[lints.rust]
missing_docs = "deny"
unsafe_code = "warn"