[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
[dependencies.crossbeam]
version = "0.8"
[dev-dependencies.criterion]
version = "0.5"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "heavy_workload"
path = "examples/heavy_workload.rs"
[[example]]
name = "work_steal_usage"
path = "examples/work_steal_usage.rs"
[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."
edition = "2021"
keywords = ["thread", "pool", "concurrency", "work-stealing", "threadpool"]
license = "MIT"
name = "multipool"
readme = "README.md"
repository = "https://github.com/ndranathunga/multipool"
version = "0.1.2"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"