async-cpupool/Cargo.toml
asonix 4c26e90871
Some checks failed
/ check (aarch64-unknown-linux-musl) (push) Successful in 12s
/ check (armv7-unknown-linux-musleabihf) (push) Successful in 13s
/ check (x86_64-unknown-linux-musl) (push) Successful in 11s
/ build (aarch64-unknown-linux-musl) (push) Successful in 13s
/ publish-forgejo (push) Failing after 4s
/ build (armv7-unknown-linux-musleabihf) (push) Successful in 12s
/ publish-crate (push) Successful in 14s
/ tests (push) Successful in 20s
/ build (x86_64-unknown-linux-musl) (push) Successful in 11s
/ clippy (push) Successful in 13s
Bump version
2024-02-12 13:34:30 -06:00

23 lines
645 B
TOML

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