[package]
edition = "2018"
name = "atomig"
version = "0.1.0"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
description = "Generic and convenient `std` atomics via `Atomic<T>`. Can be used with many\nprimitive types (including floats) and with custom types.\n"
documentation = "https://docs.rs/atomig/"
readme = "README.md"
keywords = ["atomic", "atom", "ordering", "cas", "generic"]
categories = ["concurrency", "hardware-support"]
license = "MIT/Apache-2.0"
repository = "https://github.com/LukasKalbertodt/atomig/"
[package.metadata.docs.rs]
all-features = true
[[example]]
name = "custom_type"
required-features = ["derive"]
[dependencies.atomig-macro]
version = "0.1.0"
optional = true
[features]
derive = ["atomig-macro"]
nightly = []
[badges.travis-ci]
repository = "LukasKalbertodt/atomig"