[package]
edition = "2024"
name = "expiring_ref"
version = "0.7.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A crate designed to implement a mechanism for owning values, via a destructively-moved equivalent to C++'s xvalues/`T&&`"
readme = "README.md"
keywords = [
"xvalue",
"ownref",
"moveref",
"take",
]
categories = [
"no-std",
"no-std::no-alloc",
"rust-patterns",
]
license = "LGPL-2.1"
repository = "https://git.gay/Zepalesque/expiring_ref"
[features]
alloc = []
default = ["alloc"]
unstable_out = []
[lib]
name = "expiring_ref"
path = "src/lib.rs"
[dependencies]