[package]
edition = "2021"
name = "atomic_lifo"
version = "0.1.0"
authors = ["Alexander Schütz <aschuetz@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock free thread-safe lifo for rust."
readme = "README.md"
keywords = [
"lockfree",
"atomic",
"hazard",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AlexanderSchuetz97/atomic_lifo"
[lib]
name = "atomic_lifo"
path = "src/lib.rs"
[[test]]
name = "example"
path = "tests/example.rs"
[[test]]
name = "t1"
path = "tests/t1.rs"
[[test]]
name = "t2"
path = "tests/t2.rs"
[[test]]
name = "t3"
path = "tests/t3.rs"
[[test]]
name = "t4"
path = "tests/t4.rs"
[dependencies.defer-heavy]
version = "0.1.0"