rstared 0.8.2

Simple decorator that adds rstar::RTree to collections such as HashMap, BTreeMap, StableVec, thunderdome::Arena.
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 = "2024"
name = "rstared"
version = "0.8.2"
authors = ["Mikolaj Wielgus <wielgusmikolaj@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple decorator that adds rstar::RTree to collections such as HashMap, BTreeMap, StableVec, thunderdome::Arena."
documentation = "https://docs.rs/rstared"
readme = "README.md"
keywords = [
    "rtree",
    "no_std",
]
categories = [
    "data-structures",
    "game-development",
    "gui",
    "no-std",
    "rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/topola/rstared"

[package.metadata.docs.rs]
cargo-args = [
    "--all-features",
    "-Zunstable-options",
    "-Zrustdoc-scrape-examples",
]

[badges.maintenance]
status = "actively-developed"

[features]
default = [
    "std",
    "rstar",
    "maplike/rstar",
]
rstar = []
stable-vec = [
    "dep:stable-vec",
    "maplike/stable-vec",
]
std = []
thunderdome = [
    "dep:thunderdome",
    "maplike/thunderdome",
]

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
doc-scrape-examples = true
required-features = ["std"]

[dependencies.maplike]
version = "0.8"

[dependencies.rstar]
version = "0.12"

[dependencies.stable-vec]
version = "0.4"
optional = true

[dependencies.thunderdome]
version = "0.6"
optional = true

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