[package]
edition = "2024"
rust-version = "1.85.1"
name = "smox"
version = "0.5.0"
authors = ["Christian Thäter <ct@pipapo.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Box that stores small objects inline and bigger objects on the heap using Box, Rc or Arc, with CoW semantic"
documentation = "https://docs.rs/smox"
readme = "README.md"
keywords = [
"small",
"cow",
"box",
"copy-on-write",
"stack",
]
categories = [
"memory-management",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
[features]
default = []
nightly = []
[lib]
name = "smox"
path = "src/lib.rs"