libstaticvec 0.2.1

Experimentally provides a cdylib wrapping a (currently minimal) subset of the functionality of StaticVec, for use from C or any language with dynamic library support.
Documentation
[package]
name = "libstaticvec"
description = "Experimentally provides a cdylib wrapping a (currently minimal) subset of the functionality of StaticVec, for use from C or any language with dynamic library support."
repository = "https://github.com/slightlyoutofphase/libstaticvec"
license = "MIT OR Apache-2.0"
readme = "README.md"
version = "0.2.1"
authors = ["SlightlyOutOfPhase <slightlyoutofphase@gmail.com>"]
keywords = ["vec", "array", "no_std", "vector", "stack"]
categories = ["data-structures", "no-std", "external-ffi-bindings"]
edition = "2018"
include = ["Cargo.toml", "rustfmt.toml", "src/**/*.rs", "c_header_and_example/**/*.*", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]

[badges.travis-ci]
repository = "slightlyoutofphase/libstaticvec"

[lib]
crate-type = ["cdylib"]

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

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

[features]
capacity_16 = []
capacity_32 = []
capacity_64 = []
capacity_128 = []
capacity_256 = []
capacity_512 = []
default = ["capacity_16"]

[dependencies]
staticvec = { version = "0.6", default-features = false, features = ["repr_c"] }