setup_read_cleanup 0.2.0

A library for safely transitioning through the three phases of shared resource access: setup, read, and cleanup.
Documentation
[dependencies.tokio]
features = ["rt-multi-thread", "macros"]
optional = true
version = "1.29"

[dev-dependencies.once_cell]
version = "=1.20.3"

[features]
default = []
full = ["setup_read_cleanup-on-tokio-rt"]
setup_read_cleanup-on-tokio-rt = ["tokio"]

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

[package]
authors = ["Takayuki Sato <sttk.xslet@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "asynchronous", "rust-patterns"]
description = "A library for safely transitioning through the three phases of shared resource access: setup, read, and cleanup."
documentation = "https://docs.rs/setup_read_cleanup"
edition = "2021"
keywords = ["shared-resource", "thread-safe", "static-safe", "phase-transition", "graceful"]
license = "MIT"
name = "setup_read_cleanup"
readme = "README.md"
repository = "https://github.com/sttk/setup_read_cleanup-rust"
rust-version = "1.63.0"
version = "0.2.0"