undoredo 0.4.0

Incremental-diff undo-redo decorator for collections such as HashMap, BTreeMap, StableVec, thunderdome::Arena, rstar::RTree. No need to implement commands.
Documentation
[badges.maintenance]
status = "actively-developed"

[dependencies.maplike]
version = "0.5"

[dependencies.rstared]
optional = true
version = "0.4"

[dev-dependencies.rstar]
version = "0.12"

[dev-dependencies.rstared]
version = "0.4"

[dev-dependencies.stable-vec]
version = "0.4"

[dev-dependencies.thunderdome]
version = "0.6"

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

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

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

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

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

[[example]]
doc-scrape-examples = true
name = "stable_vec"
path = "examples/stable_vec.rs"
required-features = ["stable-vec"]

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

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

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

[package]
authors = ["Mikolaj Wielgus <wielgusmikolaj@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "gui", "no-std", "rust-patterns"]
description = "Incremental-diff undo-redo decorator for collections such as HashMap, BTreeMap, StableVec, thunderdome::Arena, rstar::RTree. No need to implement commands."
documentation = "https://docs.rs/undoredo"
edition = "2024"
keywords = ["undo", "redo", "no_std"]
license = "MIT OR Apache-2.0"
name = "undoredo"
readme = "README.md"
repository = "https://codeberg.org/topola/undoredo"
version = "0.4.0"

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

[[test]]
name = "rstar"
path = "tests/rstar.rs"

[[test]]
name = "rstared"
path = "tests/rstared.rs"

[[test]]
name = "stable_vec"
path = "tests/stable_vec.rs"

[[test]]
name = "thunderdome"
path = "tests/thunderdome.rs"