arcshift 0.2.2

Replacement for std::sync::Arc<T> that supports updating the value, with some caveats.
Documentation
[dependencies.shuttle]
optional = true
version = "0.7"

[dev-dependencies.crossbeam-channel]
version = "0.5"

[dev-dependencies.mutants]
version = "0"

[dev-dependencies.rand]
version = "0.8"

[features]
debug = ["std"]
default = ["std"]
disable_slow_tests = []
nightly = []
nostd_unchecked_panics = []
shuttle = ["dep:shuttle", "std"]
std = []
validate = ["std"]

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

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(loom)", "cfg(coverage)"]
level = "warn"
priority = 0

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["memory-management", "data-structures", "no-std"]
description = "Replacement for std::sync::Arc<T> that supports updating the value, with some caveats."
documentation = "https://docs.rs/arcshift/"
edition = "2021"
homepage = "https://github.com/avl/arcshift/"
keywords = ["arc", "atomic"]
license = "MIT OR Apache-2.0"
name = "arcshift"
readme = "README.md"
repository = "https://github.com/avl/arcshift/"
version = "0.2.2"

[target."cfg(loom)".dependencies.loom]
features = ["checkpoint"]
optional = true
version = "0.7"