staticvec 0.3.5

Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics.
Documentation
[[bench]]
name = "benchmark"
path = "benchmark/benchmark.rs"

[[example]]
name = "main_demo"
path = "demo/main_demo.rs"

[[example]]
name = "serde_support_demo"
path = "demo/serde_support_demo.rs"
required-features = ["serde_support", "serde_json_support"]

[[test]]
name = "test"
path = "test/test.rs"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.serde_json]
optional = true
version = "1.0"

[features]
default = ["std"]
serde_json_support = ["serde_json"]
serde_support = ["serde"]
std = []

[lib]
doctest = false

[package]
authors = ["SlightlyOutOfPhase <slightlyoutofphase@gmail.com>"]
categories = ["data-structures"]
description = "Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics."
documentation = "https://docs.rs/staticvec/"
edition = "2018"
homepage = "https://crates.io/crates/staticvec"
include = ["Cargo.toml", "rustfmt.toml", "src/**/*.rs", "demo/**/*.rs", "benchmark/**/*.rs", "test/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["vec", "array", "container", "vector", "stack"]
license = "MIT OR Apache-2.0"
name = "staticvec"
readme = "README.md"
repository = "https://github.com/slightlyoutofphase/staticvec"
version = "0.3.5"
[profile.bench]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
rpath = false

[profile.dev]
codegen-units = 16
debug = true
debug-assertions = true
incremental = false
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"
rpath = false

[profile.test]
incremental = false