ahrs 0.2.0

A Rust port of Madgwick's AHRS algorithm
Documentation
[package]

name = "ahrs"
version = "0.2.0"
authors = ["jmagnuson"]

description = "A Rust port of Madgwick's AHRS algorithm"
repository = "https://github.com/jmagnuson/ahrs-rs"
documentation = "https://docs.rs/ahrs"
readme = "README.md"
keywords = ["ahrs", "madgwick", "imu", "kalman", "accelerometer"]
license = "GPL-3.0"

[lib]
name = "ahrs"
path = "src/lib.rs"

[dependencies]
nalgebra = "0.11.1"
alga  = "0.5.0"

[dev-dependencies]
rand = "0.3.15"
approx = "0.1.1"

# Dev profile, used for `cargo build`
[profile.dev]
opt-level = 0  # Controls the --opt-level the compiler builds with
debug = true   # Controls whether the compiler passes -g or `--cfg ndebug`