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