atomig 0.4.2

Generic, convenient and lock-free `std` atomics via `Atomic<T>`. Can be used with many primitive types (including floats) and with custom types.
Documentation
[dependencies.atomig-macro]
optional = true
version = "=0.3.0"

[dependencies.serde]
default-features = false
optional = true
version = "1"

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

[[example]]
name = "custom_type"
path = "examples/custom_type.rs"
required-features = ["derive"]

[[example]]
name = "simple"
path = "examples/simple.rs"

[features]
derive = ["atomig-macro"]

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

[package]
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["concurrency", "hardware-support", "no-std"]
description = """
Generic, convenient and lock-free `std` atomics via `Atomic<T>`. Can be used
with many primitive types (including floats) and with custom types.
"""
documentation = "https://docs.rs/atomig/"
edition = "2021"
keywords = ["atomic", "atom", "ordering", "cas", "generic"]
license = "MIT/Apache-2.0"
name = "atomig"
readme = "README.md"
repository = "https://github.com/LukasKalbertodt/atomig/"
version = "0.4.2"

[package.metadata.docs.rs]
all-features = true