arrayvec 0.7.6

A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.
Documentation
[[bench]]
harness = false
name = "arraystring"
path = "benches/arraystring.rs"

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

[build-dependencies]

[dependencies.borsh]
default-features = false
optional = true
version = "1.2.0"

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

[dependencies.zeroize]
default-features = false
optional = true
version = "1.4"

[dev-dependencies.bencher]
version = "0.1.4"

[dev-dependencies.matches]
version = "0.1"

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

[features]
default = ["std"]
std = []

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

[package]
authors = ["bluss"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "no-std"]
description = "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString."
documentation = "https://docs.rs/arrayvec/"
edition = "2018"
keywords = ["stack", "vector", "array", "data-structure", "no_std"]
license = "MIT OR Apache-2.0"
name = "arrayvec"
readme = "README.md"
repository = "https://github.com/bluss/arrayvec"
rust-version = "1.51"
version = "0.7.6"

[package.metadata.docs.rs]
features = ["borsh", "serde", "zeroize"]

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

[profile.bench]
debug = 2

[profile.release]
debug = 2

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

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

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