[package] authors = ["Buck McCready "] categories = ["algorithms", "data-structures", "graphics", "mathematics"] description = "Fast static spatial index data structure for 2D axis aligned bounding boxes" edition = "2021" keywords = ["algorithm", "2d", "computational", "geometry", "spatial"] license = "MIT OR Apache-2.0" name = "static_aabb2d_index" repository = "https://github.com/jbuckmccready/static_aabb2d_index" version = "2.0.0" [features] # allows for some selective use of unsafe for performance gains unsafe_optimizations = [] [dependencies] num-traits = "0.2" [dev-dependencies] # for benchmarks criterion = "0.5" [[bench]] harness = false name = "bench_static_aabb2d_index" [lib] # eliminate issues with criterion command line args, see: https://bheisler.github.io/criterion.rs/book/faq.html bench = false