[package]
edition = "2021"
name = "hj_thread_pool"
version = "0.1.1"
authors = ["HaojieZhang zhj630985214@gmail.com"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple thread pool implementation in Rust."
readme = "README.md"
keywords = [
"thread-pool",
"rust",
"concurrency",
]
categories = ["concurrency"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/HaojieZhang6848/hj_thread_pool"
[lib]
name = "hj_thread_pool"
path = "src/lib.rs"
[[bin]]
name = "hj_thread_pool"
path = "src/main.rs"
[dependencies.env_logger]
version = "0.9"
[dependencies.log]
version = "0.4"
[dependencies.tklog]
version = "0.1.0"