# 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 = "2021" name = "spatialtree" version = "0.1.2" build = false exclude = [".github/"] autobins = false autoexamples = false autotests = false autobenches = false description = "A fast and flexible generic spatial tree collection (Octree, Quadtree, etc)" documentation = "https://docs.rs/spatialtree" readme = "README.md" keywords = [ "octree", "quadtree", "tree", "lod", "generic", ] categories = ["data-structures"] license = "GPL-3.0" repository = "https://github.com/alexpyattaev/spatialtree" [profile.bench] lto = "fat" debug = 0 strip = "symbols" [profile.release] opt-level = 3 lto = "fat" debug = 0 debug-assertions = false overflow-checks = false strip = "symbols" [lib] name = "spatialtree" path = "src/lib.rs" [[example]] name = "glium" path = "examples/glium.rs" [[example]] name = "rayon" path = "examples/rayon.rs" [[bench]] name = "coordinates" path = "benches/coordinates.rs" harness = false [[bench]] name = "freelist" path = "benches/freelist.rs" harness = false [[bench]] name = "iterators" path = "benches/iterators.rs" harness = false [dependencies.arrayvec] version = "0.7" [dependencies.duplicate] version = "1.0" [dependencies.rand] version = "0.8" features = ["small_rng"] optional = true [dependencies.slab] version = "0.4" [dev-dependencies.criterion] version = "0.4.0" features = ["html_reports"] [dev-dependencies.freelist] version = "0.1" [dev-dependencies.glium] version = "0.30" [dev-dependencies.lru] version = "0.10.0" [dev-dependencies.rand_derive] version = "0.5.0" [dev-dependencies.rayon] version = "1.5" [features] default = ["rand"] rand = ["dep:rand"]