staticvec 0.6.8

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."
repository = "https://github.com/slightlyoutofphase/staticvec"
documentation = "https://docs.rs/staticvec/"
license = "MIT OR Apache-2.0"
readme = "README.md"
version = "0.6.8"
authors = ["SlightlyOutOfPhase <slightlyoutofphase@gmail.com>"]
keywords = ["vec", "array", "no_std", "vector", "stack"]
categories = ["data-structures", "no-std"]
edition = "2018"
include = ["Cargo.toml", "rustfmt.toml", "src/**/*.rs", "demo/**/*.rs", "benchmark/**/*.rs", "test/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]

[lib]
doctest = false

[badges.maintenance]
status = "actively-developed"

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

[badges.appveyor]
repository = "slightlyoutofphase/staticvec"

[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

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

[profile.test]
incremental = false

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

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

[[bench]]
name = "arrayvec_extend_suite"
path = "benchmark/arrayvec_extend_suite.rs"

[[bench]]
name = "clone_suite"
path = "benchmark/clone_suite.rs"

[[bench]]
name = "push_pop_suite"
path = "benchmark/push_pop_suite.rs"

[[bench]]
name = "smallvec_full_suite"
path = "benchmark/smallvec_full_suite.rs"

[[example]]
name = "main_demo"
path = "demo/main_demo.rs"
required-features = ["std"]

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

[dependencies]
staticsort = { version = "0.1" }
serde = { optional = true, version = "1.0", features = ["derive"] }
serde_json = { optional = true, version = "1.0" }

[dev-dependencies]
# This is used in the test suite.
cool_asserts = "1.0.0"