[package]
name = "pointers"
version = "0.0.1"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "trait for smart pointers, alternation to Arc, Intrusive ref counting"
keywords = ["intrusive", "smart-pointer", "concurrency"]
categories = ["data-structures", "no-std"]
homepage = "https://github.com/NaturalIO/pointers-rs"
[dependencies]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints.clippy]
new_ret_no_self = "allow"
needless_range_loop = "allow"
type_complexity = "allow"
mut_from_ref = "allow"
transmute_ptr_to_ref = "allow"
len_without_is_empty = "allow"
new_without_default = "allow"
result_unit_err = "allow"
collapsible_else_if = "allow"
collapsible_match = "allow"