[package]
edition = "2024"
name = "i_float"
version = "2.0.0"
authors = ["Nail Sharipov <nailxsharipov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This fixed float math library provides an efficient and deterministic solution for arithmetic and geometric operations."
readme = "README.md"
categories = [
"no-std",
"mathematics",
]
license = "MIT"
repository = "https://github.com/iShape-Rust/iFloat"
[features]
core = ["float_pt"]
default = ["core"]
float_pt = []
glam = ["dep:glam"]
serde = ["dep:serde"]
[lib]
name = "i_float"
path = "src/lib.rs"
[[test]]
name = "display_tests"
path = "tests/display_tests.rs"
[[test]]
name = "fix_angle_tests"
path = "tests/fix_angle_tests.rs"
[[test]]
name = "fix_float_test"
path = "tests/fix_float_test.rs"
[[test]]
name = "fix_vec_test"
path = "tests/fix_vec_test.rs"
[[test]]
name = "u128_tests"
path = "tests/u128_tests.rs"
[dependencies.glam]
version = ">=0.27"
optional = true
[dependencies.libm]
version = "^0.2"
[dependencies.serde]
version = "^1.0"
features = ["derive"]
optional = true
default-features = false