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
[package]
name = "stable-vec"
version = "0.4.2"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"
rust-version = "1.36.0"

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"
repository = "https://github.com/LukasKalbertodt/stable-vec"
license = "MIT/Apache-2.0"
keywords = ["vector", "index", "option", "arena", "bitvec"]
categories = ["data-structures", "memory-management", "no-std"]
readme = "README.md"


[workspace]
members = ["asm-test"]

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

[dependencies]

[dev-dependencies]
quickcheck = "1.1"
quickcheck_macros = "1.1"
criterion = { version = "0.2" }

[[bench]]
name = "benchmark"
harness = false