[package]
edition = "2024"
rust-version = "1.90.0"
name = "ggmath"
version = "0.15.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A math library for games and graphics with support for generics and SIMD."
readme = "README.md"
keywords = [
"math",
"matrix",
"simd",
"vector",
]
categories = [
"data-structures",
"game-development",
"graphics",
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Noam2Stein/ggmath"
[features]
assertions = []
default = ["std"]
no-assertions = []
std = []
[lib]
name = "ggmath"
path = "src/lib.rs"
[[test]]
name = "default_scalar"
path = "tests/default_scalar.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "simd_scalar"
path = "tests/simd_scalar.rs"
[[test]]
name = "utils"
path = "tests/utils.rs"
[[bench]]
name = "vector_f32"
path = "benches/vector/f32.rs"
harness = false
[dev-dependencies.assert-impl-trait]
version = "1.0.0"
[dev-dependencies.colored]
version = "3.1.1"
[dev-dependencies.glam]
version = "0.31.0"
[dev-dependencies.gungraun]
version = "0.17.0"
[dev-dependencies.itertools]
version = "0.14.0"
[profile.bench]
lto = "fat"
codegen-units = 1