async-cpupool/Cargo.toml
2023-11-25 21:13:49 -06:00

22 lines
645 B
TOML

[package]
name = "async-cpupool"
description = "A simple async threadpool for CPU-bound tasks"
version = "0.1.0"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/safe-async/async-cpupool"
documentation = "https://docs.rs/async-cpupool"
readme = "README.md"
keywords = ["async", "blocking", "threadpool"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flume = "0.11.0"
metrics = "0.21.1"
tracing = "0.1.40"
[dev-dependencies]
smol = "1.3.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }