contained 0.2.5

contained works to provide several macros and interface for transparent wrapper types in Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.96.0"
name = "contained"
version = "0.2.5"
authors = ["FL03 <joe@pzzld.org> (https://github.com/FL03)"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "contained works to provide several macros and interface for transparent wrapper types in Rust."
homepage = "https://github.com/FL03/contained/wiki"
readme = "README.md"
keywords = [
    "macros",
    "transparent",
    "wrapper",
]
categories = []
license = "Apache-2.0"
repository = "https://github.com/FL03/contained.git"

[package.metadata.docs.rs]
all-features = false
features = [
    "default",
    "derive",
    "macros",
]
rustc-args = [
    "--cfg",
    "docsrs",
]
version = "v{{version}}"

[package.metadata.release]
no-dev-version = true
tag-name = "v{{version}}"

[features]
alloc = ["contained-core/alloc"]
complex = ["contained-core/complex"]
default = ["std"]
derive = ["dep:contained-derive"]
full = [
    "default",
    "derive",
    "macros",
    "hashbrown",
]
hashbrown = ["contained-core/hashbrown"]
json = [
    "alloc",
    "serde",
    "contained-core/json",
]
macros = [
    "dep:contained-macros",
    "contained-core/macros",
]
nightly = [
    "contained-core/nightly",
    "contained-derive?/nightly",
    "contained-macros?/nightly",
]
rand = [
    "contained-core/rand",
    "rng",
]
rayon = ["contained-core/rayon"]
rng = ["contained-core/rng"]
serde = ["contained-core/serde"]
serde_json = ["contained-core/serde_json"]
std = [
    "alloc",
    "contained-core/std",
]
wasi = [
    "alloc",
    "contained-core/wasi",
]
wasm = [
    "alloc",
    "contained-core/wasm",
]
wasm_bindgen = ["contained-core/wasm_bindgen"]

[lib]
name = "contained"
path = "lib.rs"

[[example]]
name = "derive"
path = "examples/derive.rs"
required-features = ["derive"]

[[example]]
name = "macros"
path = "examples/macros.rs"
required-features = ["macros"]

[[test]]
name = "default"
path = "tests/default.rs"

[[test]]
name = "format"
path = "tests/format.rs"
required-features = ["macros"]

[[bench]]
name = "default"
path = "benches/default.rs"
harness = false

[dependencies.contained-core]
version = "0.2.5"
default-features = false

[dependencies.contained-derive]
version = "0.2.5"
optional = true
default-features = false

[dependencies.contained-macros]
version = "0.2.5"
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.8"
features = [
    "plotters",
    "plotters",
]