wrapit 0.2.0

A lightweight Rust crate that wraps any variable using interior mutability (`RefCell`, `Mutex`, or `RwLock`) for ergonomic shared mutation.
Documentation
[package]
name = "wrapit"
version = "0.2.0"
edition = "2021"
authors = ["timothy adigun <2teezrust@gmail.com>"]
description = "A lightweight Rust crate that wraps any variable using interior mutability (`RefCell`, `Mutex`, or `RwLock`) for ergonomic shared mutation."
license = "MIT"
readme = "README.md"
repository = "https://github.com/2teez/wrapit"
documentation = "https://docs.rs/wrapit"
homepage = "https://github.com/2teez/wrapit"
keywords = ["wrapper", "mutability", "interior-mutability", "cell", "mutex"]
categories = ["data-structures", "concurrency", "rust-patterns"]
exclude = [".github/*", "target/*"]

[badges]
github = { repository = "2teez/wrapit" }
maintenance = { status = "actively-developed" }

[dependencies]