temp-inst 1.0.0

Provides safe lifetime-erased representations for objects with lifetime parameters. Can be used to pass an object across an API where lifetime parameters would prevent it.
Documentation
[dependencies.either]
default-features = false
optional = true
version = "1.13.0"

[dependencies.temp-inst-derive]
optional = true
version = "1.0.0"

[features]
alloc = []
default = ["std", "either"]
derive = ["dep:temp-inst-derive"]
either = ["dep:either"]
std = ["alloc"]

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

[package]
authors = ["Sebastian Reichelt <SebastianR@gmx.de>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["rust-patterns", "no-std::no-alloc"]
description = "Provides safe lifetime-erased representations for objects with lifetime parameters. Can be used to pass an object across an API where lifetime parameters would prevent it."
edition = "2021"
keywords = ["lifetime", "lifetimes", "reference", "references"]
license = "MIT OR Apache-2.0"
name = "temp-inst"
readme = "README.md"
repository = "https://github.com/SReichelt/temp-inst"
version = "1.0.0"