generational-arena 0.2.2

A safe arena allocator that supports deletion without suffering from the ABA problem by using generational indices.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "generational-arena"
version = "0.2.2"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
description = "A safe arena allocator that supports deletion without suffering from the ABA problem by using generational indices."
readme = "./README.md"
keywords = ["generation", "index", "arena", "ecs"]
categories = ["memory-management", "no-std", "rust-patterns", "data-structures"]
license = "MPL-2.0"
repository = "https://github.com/fitzgen/generational-arena"
[profile.bench]
debug = true

[[bench]]
name = "benches"
path = "benches/benches.rs"
harness = false
[dependencies.cfg-if]
version = "0.1.5"

[dependencies.serde]
version = "1.0"
optional = true
default-features = false
[dev-dependencies.bincode]
version = "1.0"

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

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

[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
default-features = false

[dev-dependencies.serde_test]
version = "1.0"

[features]
default = ["std"]
std = []
[badges.travis-ci]
repository = "fitzgen/generational-arena"