[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