opool 0.2.0

High-performance, lock-free local and concurrent object pool with automated allocation, cleanup, and verification.
Documentation
[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"

[dependencies.crossbeam-queue]
version = "0.3"

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

[dev-dependencies.rayon]
version = "1"

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

[package]
authors = ["Khashayar Fereidani"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["memory-management", "concurrency", "no-std"]
description = "High-performance, lock-free local and concurrent object pool with automated allocation, cleanup, and verification."
documentation = "https://docs.rs/opool"
edition = "2021"
keywords = ["pool", "object-pool", "lock-free", "no_std"]
license = "MIT"
name = "opool"
readme = "README.md"
repository = "https://github.com/fereidani/opool"
version = "0.2.0"

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

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