tiny-vec 0.10.1

Small vector optimization
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"
name = "tiny-vec"
version = "0.10.1"
authors = ["Saúl Valdelvira <saul@saulv.es>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small vector optimization"
readme = "README"
license = "GPL-3.0-only"
repository = "https://github.com/saulvaldelvira/tiny-vec"
resolver = "2"

[features]
alloc = []
default = ["std"]
serde = ["dep:serde"]
std = ["alloc"]
use-nightly-features = []

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

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

[[bench]]
name = "bench"
path = "benches/bench.rs"

[[bench]]
name = "vs_stdvec"
path = "benches/vs_stdvec.rs"

[dependencies.serde]
version = ">=1.0.219"
optional = true
default-features = false