[package]
edition = "2021"
name = "simple-update-in"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Immutable nested update with structural sharing"
readme = "README.md"
keywords = [
"immutable",
"update-in",
"structural-sharing",
"persistent",
"json",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/hey-jj/simple-update-in"
[lib]
name = "simple_update_in"
path = "src/lib.rs"
[[test]]
name = "asynced"
path = "tests/asynced.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "edge_values"
path = "tests/edge_values.rs"
[[test]]
name = "misc"
path = "tests/misc.rs"
[[test]]
name = "object_is"
path = "tests/object_is.rs"
[[test]]
name = "predicates"
path = "tests/predicates.rs"
[[test]]
name = "reserved_keys"
path = "tests/reserved_keys.rs"
[[test]]
name = "structural_sharing"
path = "tests/structural_sharing.rs"
[dependencies]