[package]
name = "arcshift"
version = "0.4.3"
documentation = "https://docs.rs/arcshift/"
homepage = "https://github.com/avl/arcshift/"
repository = "https://github.com/avl/arcshift/"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Replacement for std::sync::Arc<T> that supports updating the value, with some caveats."
readme = "../README.md"
keywords = ["arc", "atomic"]
categories = ["memory-management", "data-structures", "no-std"]
rust-version = "1.75.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)', 'cfg(coverage)'] }
[dependencies]
shuttle = {version = "0.7", optional = true}
[features]
validate = ["std"]
debug = ["std"]
disable_slow_tests = []
shuttle = ["dep:shuttle", "std"]
nostd_unchecked_panics = []
nightly = []
std = []
default = ["std"]
[target.'cfg(loom)'.dependencies]
loom = { version = "0.7", features = ["checkpoint"], optional = true}
[dev-dependencies]
crossbeam-channel = "0.5"
rand="0.8"
mutants = "0"