unique-pointer 0.3.0

Provides the `UniquePointer` data structure that makes extensive use of `unsafe` rust to provide a shared pointer across other data structures.
Documentation
[dev-dependencies.k9]
version = "0.12.0"

[features]
debug = []

[lib]
bench = false
name = "unique_pointer"
path = "src/lib.rs"

[package]
authors = ["Gabriel DeMoura <gabrielteratos@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures"]
description = "Provides the `UniquePointer` data structure that makes extensive use of `unsafe` rust to provide a shared pointer across other data structures."
documentation = "https://docs.rs/unique-pointer"
edition = "2024"
homepage = "https://github.com/gabrielfalcao/unique-pointer"
keywords = ["rust", "memory", "library"]
license = "MIT"
name = "unique-pointer"
readme = "README.md"
version = "0.3.0"

[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]

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

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