statewatcher 0.1.0

A simple, shared state channel where readers are notified of updates, inspired by tokio::watch but for std
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "statewatcher"
version = "0.1.0"
edition = "2021"
authors = ["Skandrk <skandrk@outlook.com>"]
license = "MIT OR Apache-2.0"
description = "A simple, shared state channel where readers are notified of updates, inspired by tokio::watch but for std"
documentation = "https://docs.rs/statewatcher"
homepage = "https://github.com/skandrk/state_watcher"
repository = "https://github.com/skandrk/state_watcher"
keywords = ["events", "reactive", "state", "watch", "observer"]
categories = ["data-structures", "concurrency"]

[dependencies]

[features]
mutex = []