sundo 0.2.0

Snapshot-based undo/redo library with support for persistent data structures
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 = "sundo"
version = "0.2.0"
build = false
exclude = [
    "demos/",
    "docs/",
    ".vscode/",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Snapshot-based undo/redo library with support for persistent data structures"
readme = "README.md"
keywords = [
    "undo",
    "redo",
    "history",
    "snapshot",
    "persistent",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/kingknecht/sundo"

[features]
default = ["persistent"]
persistent = ["dep:im"]

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

[dependencies.im]
version = "15.1"
optional = true