1 | [package] |
2 | name = "micromath" |
3 | version = "2.1.0" # Also update html_root_url in lib.rs when bumping this |
4 | description = "" " |
5 | Embedded-friendly math library featuring fast floating point approximations |
6 | (with small code size) for common arithmetic operations, trigonometry, |
7 | 2D/3D vector types, statistical analysis, and quaternions. |
8 | Optimizes for performance and small code size at the cost of precision. |
9 | " "" |
10 | authors = ["Tony Arcieri <bascule@gmail.com>" ] |
11 | license = "Apache-2.0 OR MIT" |
12 | repository = "https://github.com/tarcieri/micromath" |
13 | readme = "README.md" |
14 | edition = "2018" |
15 | categories = ["embedded" , "mathematics" , "science" , "no-std" ] |
16 | keywords = ["math" , "quaternions" , "statistics" , "trigonometry" , "vector" ] |
17 | |
18 | [dependencies] |
19 | num-traits = { version = "0.2" , optional = true, default-features = false } |
20 | |
21 | [features] |
22 | quaternion = [] |
23 | statistics = [] |
24 | vector = [] |
25 | |
26 | [package.metadata.docs.rs] |
27 | all-features = true |
28 | rustdoc-args = ["--cfg" , "docsrs" ] |
29 | |