atomic_lifo 0.1.0

Lock free thread-safe lifo for rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"