observable-property 0.4.3

A thread-safe observable property implementation for Rust
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 = "observable-property"
version = "0.4.3"
authors = ["Iede Snoek <info@esoxsolutions.nl>"]
build = false
exclude = [
    "target/*",
    "Cargo.lock",
    ".git/*",
    ".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A thread-safe observable property implementation for Rust"
homepage = "https://github.com/snoekiede/ObservableProperties"
documentation = "https://docs.rs/observable-property"
readme = "README.md"
keywords = [
    "observable",
    "property",
    "thread-safe",
    "concurrency",
    "observer",
]
categories = [
    "concurrency",
    "data-structures",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/snoekiede/ObservableProperties"

[features]
async = []
debug = ["dep:backtrace"]
default = []
serde = ["dep:serde"]

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

[[example]]
name = "async_stream"
path = "examples/async_stream.rs"
required-features = ["async"]

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.backtrace]
version = "0.3"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.tokio]
version = "1.35"
features = [
    "macros",
    "rt-multi-thread",
    "time",
]

[dev-dependencies.tracing]
version = "0.1"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]