[package]
edition = "2021"
name = "grounded"
version = "0.2.1"
authors = ["James Munns <james@onevariable.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A toolkit for managing unsafe statics"
documentation = "https://docs.rs/grounded/"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jamesmunns/grounded"
[package.metadata.docs.rs]
features = ["cas"]
rustdoc-args = [
"--cfg",
"doc_cfg",
]
[features]
cas = ["portable-atomic/require-cas"]
critical-section = ["portable-atomic/critical-section"]
default = []
[lib]
name = "grounded"
path = "src/lib.rs"
[dependencies.portable-atomic]
version = "1.3"
default-features = false