[package]
edition = "2024"
name = "expiring_ref"
version = "0.9.0"
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_project",
]
unstable_box_alias = []
unstable_dyn_example = []
unstable_out = []
unstable_project = []
[lib]
name = "expiring_ref"
path = "src/lib.rs"
[dependencies.pastey]
version = "0.2.3"