stackbox 0.2.0-rc2

`&own`ing references in stable Rust - no_std-friendly Box
Documentation
[package]
name = "stackbox"
version = "0.2.0-rc2"
authors = [
    "Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
edition = "2021"

license = "Zlib OR MIT OR Apache-2.0"

documentation = "https://docs.rs/stackbox"
repository = "https://github.com/danielhenrymantilla/stackbox.rs"
homepage = "https://crates.io/crates/stackbox"

readme = "README.md"

description = "`&own`ing references in stable Rust - no_std-friendly Box"
keywords = [
    "no_std",
    "own",
    "stack",
    "move",
    "unsized_rvalues",
]
categories = [
    "no-std",
    "rust-patterns",
]

[dependencies]
paste = "1.0.2"

[dependencies.unsize]
version = "1"
optional = true

[features]
alloc = []
std = ["alloc"]

default = ["alloc"]

docs = []

[dev-dependencies]
with_locals = "0.3.3"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--html-in-header", "fix-rustdoc-css.html",
]