stable-vec 0.4.2

A Vec-like collection which guarantees stable indices and features O(1) element deletion (semantically similar to `Vec<Option<T>>`). Useful for allocations in graphs or similar data structures.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
rust-version = "1.36.0"
name = "stable-vec"
version = "0.4.2"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A Vec-like collection which guarantees stable indices and features O(1)
element deletion (semantically similar to `Vec<Option<T>>`). Useful for
allocations in graphs or similar data structures.
"""
documentation = "https://docs.rs/stable-vec"
readme = "README.md"
keywords = [
    "vector",
    "index",
    "option",
    "arena",
    "bitvec",
]
categories = [
    "data-structures",
    "memory-management",
    "no-std",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/LukasKalbertodt/stable-vec"

[features]
nightly-bench = ["criterion/real_blackbox"]

[lib]
name = "stable_vec"
path = "src/lib.rs"

[[example]]
name = "compact"
path = "examples/compact.rs"

[[example]]
name = "correct_drop"
path = "examples/correct_drop.rs"

[[example]]
name = "iterators"
path = "examples/iterators.rs"

[[example]]
name = "printing"
path = "examples/printing.rs"

[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false

[dependencies]

[dev-dependencies.criterion]
version = "0.2"

[dev-dependencies.quickcheck]
version = "1.1"

[dev-dependencies.quickcheck_macros]
version = "1.1"