[features]
all = ["unsync", "mutex", "rwlock"]
default = ["all"]
mutex = []
no_std = ["unsync"]
rwlock = []
unsync = []
[lib]
name = "tempref"
path = "src/lib.rs"
[package]
authors = ["Yua"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "data-structures", "memory-management", "concurrency"]
description = "This crate provides a type whose value remains unchanged even when accessed through a mutable reference."
edition = "2024"
exclude = [".gitignore", ".github/*", "target/*"]
keywords = ["guard", "reset", "buffer", "scope", "temp"]
license = "MIT OR Apache-2.0"
name = "tempref"
readme = "README.md"
repository = "https://github.com/yua134/tempref"
version = "0.3.0"
[[test]]
name = "basic"
path = "tests/basic.rs"