[package]
edition = "2024"
rust-version = "1.85"
name = "async-observe"
version = "0.1.1"
authors = ["nanoqsh"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async single-producer, multi-consumer channel that only retains the last sent value"
documentation = "https://docs.rs/async-observe"
readme = "README.md"
keywords = [
"async",
"channel",
"synchronization",
"watch",
"observer",
]
categories = [
"asynchronous",
"concurrency",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/nanoqsh/async-observe"
[lib]
name = "async_observe"
path = "src/lib.rs"
[[example]]
name = "hello"
path = "examples/hello.rs"
[[example]]
name = "stream"
path = "examples/stream.rs"
[[test]]
name = "channel"
path = "tests/channel.rs"
[dependencies.event-listener]
version = "5.4.1"
default-features = false
[dependencies.futures-lite]
version = "2.6.1"
default-features = false
[dev-dependencies.futures-lite]
version = "2.6.1"
features = ["std"]
[lints.rust]
elided-lifetimes-in-paths = "warn"
missing-docs = "warn"
unreachable-pub = "warn"