smallvec-wrapper 0.4.1

Macro and common structs to play with `smallvec`
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 = "2021"
rust-version = "1.56"
name = "smallvec-wrapper"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macro and common structs to play with `smallvec`"
homepage = "https://github.com/al8n/smallvec-wrapper"
documentation = "https://docs.rs/smallvec-wrapper"
readme = "README.md"
keywords = [
    "smallvec",
    "smallvec-macro",
    "wrapper",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/al8n/smallvec-wrapper"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
debugger_visualizer = ["smallvec/debugger_visualizer"]
default = ["std"]
drain_filter = ["smallvec/drain_filter"]
drain_keep_rest = ["smallvec/drain_keep_rest"]
may_dangle = ["smallvec/may_dangle"]
serde = [
    "dep:serde",
    "smallvec/serde",
    "either/serde",
]
specialization = ["smallvec/specialization"]
std = [
    "either/use_std",
    "rkyv?/std",
    "serde?/std",
    "smallvec/write",
]
union = ["smallvec/union"]

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

[[example]]
name = "myvec"
path = "examples/myvec.rs"

[dependencies.either]
version = "1"
default-features = false

[dependencies.paste]
version = "1"

[dependencies.rkyv]
version = "0.8"
features = [
    "smallvec-1",
    "bytecheck",
]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
default-features = false

[dependencies.smallvec]
version = "1"
features = [
    "const_new",
    "const_generics",
]
default-features = false