[package]
edition = "2021"
name = "fixed-math-taylor"
version = "0.3.2"
authors = ["Jorge Andre Castro <georgeandrec@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance fixed-point trigonometry library optimized for microcontrollers without FPU. 100% no_std."
documentation = "https://docs.rs/fixed-math-taylor"
readme = "README.md"
keywords = [
"fixed-point",
"trigonometry",
]
categories = [
"mathematics",
"no-std",
]
license = "GPL-2.0-or-later"
repository = "https://github.com/jorgeandrecastro/fixed-math-taylor"
[features]
default = []
f32 = []
fast-sin = []
lut = []
taylor = []
[lib]
name = "fixed_math_taylor"
path = "src/lib.rs"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true