atomic-tagged-ptr 0.3.2

A platform-adaptive atomic tagged pointer implementation supporting 32-bit, 48-bit, and 52/57-bit high virtual address layouts with ABA protection.
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 = "2024"
name = "atomic-tagged-ptr"
version = "0.3.2"
authors = ["Shao G. <shaogme@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A platform-adaptive atomic tagged pointer implementation supporting 32-bit, 48-bit, and 52/57-bit high virtual address layouts with ABA protection."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/shaogme/atomic-tagged-ptr"

[features]
default = ["std"]
parking_lot = [
    "std",
    "dep:parking_lot",
]
std = []

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

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

[dependencies.parking_lot]
version = "0.12.5"
optional = true