async-observe 0.1.1

Async single-producer, multi-consumer channel that only retains the last sent value
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"
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"