[package]
edition = "2021"
name = "archway"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust traits for Rc and Arc interoperation"
homepage = "https://github.com/zfzackfrost/archway"
documentation = "https://docs.rs/archway"
readme = "README.md"
keywords = [
"no-std",
"pointer",
"rc",
"arc",
"shared",
]
categories = [
"no-std",
"rust-patterns",
"memory-management",
]
license = "MIT"
repository = "https://github.com/zfzackfrost/archway"
[lib]
name = "archway"
path = "src/lib.rs"
[[test]]
name = "arc"
path = "tests/arc.rs"
[[test]]
name = "rc"
path = "tests/rc.rs"
[dependencies]