[package]
edition = "2024"
name = "rstared"
version = "0.14.0"
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 arbitrary collections."
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://github.com/mikwielgus/rstared"
[package.metadata.docs.rs]
cargo-args = [
"--all-features",
"-Zunstable-options",
"-Zrustdoc-scrape-examples",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[lib]
name = "rstared"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
doc-scrape-examples = true
[[example]]
name = "undoredo"
path = "examples/undoredo.rs"
doc-scrape-examples = true
required-features = ["undoredo"]
[[test]]
name = "rtreed"
path = "tests/rtreed.rs"
[[test]]
name = "undoredo"
path = "tests/undoredo.rs"
[dependencies.maplike]
version = "0.13.5"
features = ["rstar"]
default-features = false
[dependencies.rstar]
version = "0.13"
[dependencies.undoredo]
version = "0.13"
features = ["rstar"]
optional = true
default-features = false
[dev-dependencies.maplike]
version = "0.13.5"
features = [
"rstar",
"stable-vec",
"thunderdome",
]
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.stable-vec]
version = "0.4"
[dev-dependencies.thunderdome]
version = "0.6"