i_float 2.0.0

This fixed float math library provides an efficient and deterministic solution for arithmetic and geometric operations.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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