setup_read_cleanup 0.5.1

A library for safely transitioning through the three phases of shared resource access: setup, read, and cleanup.
Documentation
[dependencies.futures]
optional = true
version = "0.3"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "sync", "time"]
optional = true
version = "1"

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

[features]
default = []
full = ["setup_read_cleanup-on-tokio", "setup_read_cleanup-graceful"]
setup_read_cleanup-graceful = []
setup_read_cleanup-on-tokio = ["tokio", "futures"]

[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.74.1"
version = "0.5.1"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu"]

[[test]]
name = "conditional_data_send_sync_impl_test"
path = "tests/conditional_data_send_sync_impl_test.rs"

[[test]]
name = "graceful_phased_cell_async_test"
path = "tests/graceful_phased_cell_async_test.rs"

[[test]]
name = "graceful_phased_cell_sync_test"
path = "tests/graceful_phased_cell_sync_test.rs"

[[test]]
name = "graceful_phased_cell_test"
path = "tests/graceful_phased_cell_test.rs"

[[test]]
name = "phased_cell_async_test"
path = "tests/phased_cell_async_test.rs"

[[test]]
name = "phased_cell_sync_test"
path = "tests/phased_cell_sync_test.rs"

[[test]]
name = "phased_cell_test"
path = "tests/phased_cell_test.rs"