[package]
edition = "2024"
name = "base_2"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exact fixed-point geometry. Float in, float out, zero drift inside."
homepage = "https://github.com/Avon662/base_2"
documentation = "https://docs.rs/base_2"
readme = "README.md"
keywords = [
"geometry",
"fixed-point",
"gamedev",
"collision",
"math",
]
categories = [
"game-development",
"mathematics",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/Avon662/base_2"
[lib]
name = "base_2"
path = "src/lib.rs"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
many_single_char_names = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1