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
[badges.travis-ci]
repository = "slightlyoutofphase/libstaticvec"
[dependencies.staticvec]
default-features = false
features = ["repr_c"]
version = "0.6"

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

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

[package]
authors = ["SlightlyOutOfPhase <slightlyoutofphase@gmail.com>"]
categories = ["data-structures", "no-std", "external-ffi-bindings"]
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."
edition = "2018"
include = ["Cargo.toml", "rustfmt.toml", "src/**/*.rs", "c_header_and_example/**/*.*", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["vec", "array", "no_std", "vector", "stack"]
license = "MIT OR Apache-2.0"
name = "libstaticvec"
readme = "README.md"
repository = "https://github.com/slightlyoutofphase/libstaticvec"
version = "0.2.1"
[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