async-cpupool/Cargo.toml
asonix bcac76dbe9
Some checks failed
/ tests (push) Successful in 22s
/ clippy (push) Failing after 17s
/ check (aarch64-unknown-linux-musl) (push) Successful in 11s
/ check (armv7-unknown-linux-musleabihf) (push) Successful in 11s
/ check (x86_64-unknown-linux-musl) (push) Successful in 11s
Prepare 0.2.2
2024-04-14 19:16:26 -05:00

22 lines
628 B
TOML

[package]
name = "async-cpupool"
description = "A simple async threadpool for CPU-bound tasks"
version = "0.2.2"
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]
metrics = "0.22.0"
tracing = "0.1.40"
[dev-dependencies]
smol = "2.0.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }