tagged-index-stack 0.1.0

Lock-free, allocation-free, no_std free-list of small indices (a slot recycler) with a strictly monotonic, non-wrapping ABA-eliminating tag packed into one atomic word.
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"
rust-version = "1.79"
name = "tagged-index-stack"
version = "0.1.0"
build = false
exclude = [
    "tests/compile_fail/",
    "scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free, allocation-free, no_std free-list of small indices (a slot recycler) with a strictly monotonic, non-wrapping ABA-eliminating tag packed into one atomic word."
homepage = "https://github.com/PHPCraftdream/sefer-alloc/tree/main/crates/tagged-index-stack"
documentation = "https://docs.rs/tagged-index-stack"
readme = "README.md"
keywords = [
    "lock-free",
    "aba",
    "free-list",
    "slab",
    "no-std",
]
categories = [
    "concurrency",
    "data-structures",
    "no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PHPCraftdream/sefer-alloc"

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

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

[[test]]
name = "backoff_oracle"
path = "tests/backoff_oracle.rs"

[[test]]
name = "custom_storage_impl"
path = "tests/custom_storage_impl.rs"

[[test]]
name = "loom_aba"
path = "tests/loom_aba.rs"

[[test]]
name = "narrow_domain_unchecked_storage"
path = "tests/narrow_domain_unchecked_storage.rs"

[[test]]
name = "proptest_pack_unpack"
path = "tests/proptest_pack_unpack.rs"

[[test]]
name = "push_guard_track_caller"
path = "tests/push_guard_track_caller.rs"

[[test]]
name = "readme_example"
path = "tests/readme_example.rs"

[[test]]
name = "stack_unit"
path = "tests/stack_unit.rs"

[[test]]
name = "tag_seal"
path = "tests/tag_seal.rs"

[[test]]
name = "threaded_conservation"
path = "tests/threaded_conservation.rs"

[[bench]]
name = "tagged_index_stack_bench"
path = "benches/tagged_index_stack_bench.rs"
test = false
harness = false

[dev-dependencies.bench-scale-tool]
version = "0.1"

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

[target."cfg(loom)".dependencies.loom]
version = "0.7"
optional = true

[lints.clippy]
incompatible-msrv = "allow"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    "cfg(loom)",
    "cfg(tagged_index_stack_test)",
]