[lib]
crate-type = ["lib"]
name = "aabb"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures", "graphics", "mathematics"]
description = "Static AABB spatial index for 2D queries"
documentation = "https://docs.rs/aabb"
edition = "2024"
homepage = "https://github.com/radevgit/aabb"
keywords = ["2d", "spatial", "aabb", "hilbert", "rtree"]
license = "MIT"
name = "aabb"
readme = "README.md"
repository = "https://github.com/radevgit/aabb"
rust-version = "1.88"
version = "0.1.2"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"