[package] name = "vqf-rs" description = "A `no-std`, dependency-free port of VQF sensor fusion algorithm for IMUs." repository = "https://github.com/vgskye/vqf-rs" categories = ["algorithms", "mathematics", "science::robotics", "no-std::no-alloc"] keywords = ["imu", "sensor-fusion", "vqf"] authors = ["Skye "] version = "0.2.0" edition = "2021" license = "MIT" [features] default = ["std", "motion-bias-estimation"] std = [] libm = ["dep:libm"] f32 = [] motion-bias-estimation = [] micromath = ["dep:micromath", "f32"] [dependencies] libm = { version = "0.2.8", optional = true } micromath = { version = "2.1.0", optional = true }