-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 719 Bytes
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
31
32
33
34
35
36
[package]
name = "fixed_math"
description = "Some math traits and functions for `fixed` point numbers."
version = "0.4.2"
documentation = "https://docs.rs/fixed_math"
repository = "https://github.com/Zentropivity/fixed_math"
readme = "README.md"
keywords = ["fixed", "math", "numerics"]
categories = ["algorithms", "mathematics"]
edition = "2024"
license = "MIT OR Apache-2.0"
[workspace]
members = ["tablegen"]
[features]
default = ["std", "right_angles"]
right_angles = []
std = ["fixed/std"]
[dependencies]
fixed = { version = "1.29" }
seq-macro = "0.3"
# match fixed deps
typenum = "1.16"
[dev-dependencies]
criterion = "0.4"
[[bench]]
name = "sin_cos"
harness = false
[[bench]]
name = "sqrt"
harness = false