[package]
edition = "2021"
name = "unknownrori-simple-thread-pool"
version = "0.2.0"
authors = ["UnknownRori <68576836+UnknownRori@users.noreply.github.com>"]
description = "A lighweight thread pool for networking and other stuff"
readme = "README.md"
keywords = [
"thread",
"parallel",
"concurrency",
]
categories = ["concurrency"]
license = "MIT"
repository = "https://github.com/UnknownRori/rs-simple-thread-pool"
[dependencies.crossbeam-channel]
version = "0.5"
optional = true
[features]
crossbeam = ["dep:crossbeam-channel"]
default = ["crossbeam"]
mpsc = []