staticvec 0.2.4

Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics.
Documentation
[package]
name = "staticvec"
description = "Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics."
homepage = "https://crates.io/crates/staticvec"
repository = "https://github.com/slightlyoutofphase/staticvec"
license = "MIT"
readme = "README.md"
version = "0.2.4"
authors = ["SlightlyOutOfPhase <slightlyoutofphase@gmail.com>"]
keywords = ["vec","array","container","vector","stack"]
categories = ["data-structures"]
edition = "2018"

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

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

[[bin]]
name = "demo"
path = "demo/demo.rs"
doc = false

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

[dependencies]