[package]
edition = "2024"
rust-version = "1.95"
name = "rec_cell"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-cost borrow-checking of aliased references with cyclic construction"
readme = "README.md"
keywords = [
"cell",
"borrowing",
]
categories = [
"memory-management",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ivan-shrimp/rec-cell"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
cyclic_with_mut = ["dep:replace_with"]
default = ["std"]
std = ["replace_with?/std"]
[lib]
name = "rec_cell"
path = "src/lib.rs"
[dependencies.replace_with]
version = "0.1.8"
optional = true
default-features = false