unchecked-refcell 0.2.1

A drop-in alternative to RefCell for performance-critical code where it is certain no borrowing rules are violated.
Documentation
[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"

[dependencies]

[dev-dependencies.criterion]
version = "0.4"

[features]
checked = ["debug_refcell"]
debug_refcell = []
default = []

[lib]
name = "unchecked_refcell"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A drop-in alternative to RefCell for performance-critical code where it is certain no borrowing rules are violated."
edition = "2024"
license = "Apache-2.0"
name = "unchecked-refcell"
readme = "README.md"
repository = "https://github.com/mcmah309/unchecked-refcell"
version = "0.2.1"

[package.metadata.docs.rs]
all-features = false
rustdoc-args = ["--cfg", "docsrs"]

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