obj-pool 0.6.0

A simple object arena
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 = "2024"
name = "obj-pool"
version = "0.6.0"
authors = [
    "Artem Shein <sc-github@aisys.ru>",
    "Stjepan Glavina <stjepang@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple object arena"
documentation = "https://docs.rs/obj-pool"
readme = "README.md"
categories = ["memory-management"]
license = "Apache-2.0/MIT"
repository = "https://github.com/artemshein/obj-pool"

[badges.travis-ci]
repository = "artemshein/obj-pool"

[features]
default = []
serde_support = ["serde"]

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

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

[dependencies.parking_lot]
version = "0.12.1"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.unreachable]
version = "1.0.0"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.slab]
version = "0.4"