tinyvec 1.6.0

`tinyvec` provides 100% safe vec-like data structures.
Documentation
[[bench]]
harness = false
name = "macros"
required-features = ["alloc"]

[[bench]]
harness = false
name = "smallvec"
required-features = ["alloc", "real_blackbox"]

[[test]]
name = "tinyvec"
required-features = ["alloc", "std"]
[dependencies.arbitrary]
optional = true
version = "1"

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

[dependencies.tinyvec_macros]
optional = true
version = "0.1"
[dev-dependencies.criterion]
version = "0.3.0"

[dev-dependencies.serde_test]
version = "1.0"

[dev-dependencies.smallvec]
version = "1"

[features]
alloc = ["tinyvec_macros"]
default = []
experimental_write_impl = []
grab_spare_slice = []
nightly_slice_partition_dedup = []
real_blackbox = ["criterion/real_blackbox"]
rustc_1_40 = []
rustc_1_55 = ["rustc_1_40"]
rustc_1_57 = ["rustc_1_55"]
std = ["alloc"]

[package]
authors = ["Lokathor <zefria@gmail.com>"]
categories = ["data-structures", "no-std"]
description = "`tinyvec` provides 100% safe vec-like data structures."
edition = "2018"
keywords = ["vec", "no_std", "no-std"]
license = "Zlib OR Apache-2.0 OR MIT"
name = "tinyvec"
readme = "README.md"
repository = "https://github.com/Lokathor/tinyvec"
version = "1.6.0"
[package.metadata.docs.rs]
features = ["alloc", "std", "grab_spare_slice", "rustc_1_40", "rustc_1_55", "serde"]
rustdoc-args = ["--cfg", "docs_rs"]

[package.metadata.playground]
features = ["alloc", "std", "grab_spare_slice", "rustc_1_40", "rustc_1_55", "serde"]
[profile.bench]
debug = 2

[profile.test]
opt-level = 3