async-cpupool/Cargo.toml

25 lines
738 B
TOML
Raw Normal View History

2023-11-24 19:42:10 +00:00
[package]
name = "async-cpupool"
2023-11-26 03:13:49 +00:00
description = "A simple async threadpool for CPU-bound tasks"
2024-04-15 00:16:26 +00:00
version = "0.2.2"
2023-11-26 03:13:49 +00:00
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"]
2023-11-24 19:42:10 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-07 18:14:53 +00:00
metrics = "0.22.0"
2023-11-24 19:42:10 +00:00
tracing = "0.1.40"
2023-11-25 04:52:25 +00:00
2024-04-15 22:59:13 +00:00
[target.'cfg(loom)'.dependencies]
loom = { version = "0.7", features = ["futures"] }
[target.'cfg(not(loom))'.dev-dependencies]
2024-01-07 18:14:53 +00:00
smol = "2.0.0"
2023-11-25 04:52:25 +00:00
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }