[package]
edition = "2018"
rust-version = "1.51"
name = "tagged-pointer"
version = "0.2.11"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform-independent space-efficient tagged pointers"
documentation = "https://docs.rs/tagged-pointer"
readme = "misc/crate-readme.md"
keywords = [
"pointer",
"tag",
]
categories = [
"data-structures",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/taylordotfish/tagged-pointer"
[features]
fallback = []
[lib]
name = "tagged_pointer"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(has_unsafe_op_in_unsafe_fn)",
"cfg(has_const_assert)",
]