oktree 0.5.1

Fast octree implementation.
Documentation
# 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 = "oktree"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast octree implementation."
readme = "README.md"
keywords = [
    "graphics",
    "bevy",
    "voxel",
    "octree",
]
license = "MIT"
repository = "https://github.com/exor2008/oktree"

[package.metadata.docs.rs]
all-features = true

[features]
bevy = ["dep:bevy"]
default = ["std"]
std = [
    "num/default",
    "bevy/default",
]

[lib]
name = "oktree"
path = "src/lib.rs"

[[example]]
name = "bevy_tree"
path = "examples/bevy_tree.rs"
required-features = ["bevy"]

[[example]]
name = "no_std"
path = "examples/no_std.rs"
required-features = ["bevy"]

[[example]]
name = "profile"
path = "examples/profile.rs"
required-features = ["bevy"]

[[example]]
name = "simple"
path = "examples/simple.rs"
required-features = ["bevy"]

[[example]]
name = "volume"
path = "examples/volume.rs"

[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
required-features = ["bevy"]

[dependencies.bevy]
version = ">=0.10"
optional = true

[dependencies.heapless]
version = "0.9.2"

[dependencies.num]
version = "0.4.3"
default-features = false

[dependencies.smallvec]
version = "1.15.1"
features = ["const_generics"]

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.rand]
version = "0.10.0"

[dev-dependencies.wee_alloc]
version = "0.4.5"

[profile.profiler]
opt-level = 3
debug = 2
split-debuginfo = "full"
inherits = "release"