vecpool 0.1.0

Thread-local pool of reusable Vec buffers with cross-type reuse
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"
rust-version = "1.85"
name = "vecpool"
version = "0.1.0"
build = false
exclude = [
    ".workbench/**",
    ".git/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Thread-local pool of reusable Vec buffers with cross-type reuse"
documentation = "https://docs.rs/vecpool"
readme = "README.md"
keywords = [
    "pool",
    "vec",
    "buffer",
    "reuse",
    "allocation",
]
categories = [
    "memory-management",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/MichaelDuPlessis/vecpool"

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

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

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

[dependencies.rustc-hash]
version = "=2.1.2"

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