tempref 0.3.0

This crate provides a type whose value remains unchanged even when accessed through a mutable reference.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

[features]
all = [
    "unsync",
    "mutex",
    "rwlock",
]
default = ["all"]
mutex = []
no_std = ["unsync"]
rwlock = []
unsync = []

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

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