multipool 0.2.4

A configurable thread pool with optional work-stealing support and task priority scheduling.
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/benchmark.rs"

[dependencies.crossbeam]
version = "0.8"

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

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

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

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

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

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

[features]
bench = []

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

[package]
authors = ["Nisal D Ranathunga <nisaldasunpriya@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "asynchronous"]
description = "A configurable thread pool with optional work-stealing support and task priority scheduling."
edition = "2021"
keywords = ["thread", "concurrency", "work-stealing", "threadpool", "priority"]
license = "MIT"
name = "multipool"
readme = "README.md"
repository = "https://github.com/ndranathunga/multipool"
version = "0.2.4"

[profile.bench]
opt-level = 3

[target.'cfg(target_os = "linux")'.dev-dependencies.procfs]
version = "0.14"

[target.'cfg(target_os = "windows")'.dev-dependencies.winapi]
features = ["processthreadsapi", "tlhelp32", "handleapi"]
version = "0.3"

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

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