esox_objectpool 1.1.2

High-performance, thread-safe object pool with async support, circuit breaker, eviction, health monitoring and Prometheus metrics
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.88"
name = "esox_objectpool"
version = "1.1.2"
authors = ["Iede Snoek <info@esoxsolutions.nl>"]
build = false
exclude = [
    ".idea/",
    ".github/",
    "*.md.bak",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance, thread-safe object pool with async support, circuit breaker, eviction, health monitoring and Prometheus metrics"
homepage = "https://github.com/snoekiede/Esox.Rust.ObjectPool"
documentation = "https://docs.rs/esox_objectpool"
readme = "README.md"
keywords = [
    "pool",
    "object-pool",
    "async",
    "concurrency",
    "performance",
]
categories = [
    "concurrency",
    "asynchronous",
    "caching",
]
license = "MIT"
repository = "https://github.com/snoekiede/Esox.Rust.ObjectPool"

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

[[bin]]
name = "esox_objectpool"
path = "src/main.rs"

[[example]]
name = "advanced"
path = "examples/advanced.rs"

[[example]]
name = "async_usage"
path = "examples/async_usage.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[dependencies.crossbeam]
version = "0.8"

[dependencies.dashmap]
version = "6"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies]