1[package] 2name = "atomic" 3version = "0.5.1" 4edition = "2018" 5authors = ["Amanieu d'Antras <amanieu@gmail.com>"] 6description = "Generic Atomic<T> wrapper type" 7documentation = "https://amanieu.github.io/atomic-rs/atomic/index.html" 8license = "Apache-2.0/MIT" 9repository = "https://github.com/Amanieu/atomic-rs" 10readme = "README.md" 11keywords = ["atomic", "no_std"] 12 13[features] 14default = ["fallback"] 15std = [] 16fallback = [] 17 18[build-dependencies] 19autocfg = "1" 20