[package]
edition = "2024"
name = "driveshaft"
version = "0.2.1"
authors = ["Charlie Gallagher"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal, high-performance thread pool for running synchronous tasks with per-thread context from async code."
readme = "readme.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ctgallagher4/driveshaft"
[lib]
name = "driveshaft"
path = "src/lib.rs"
[dependencies.core_affinity]
version = "0.8.3"
[dependencies.crossbeam]
version = "^0.8.0"
[dependencies.thiserror]
version = "^2.0.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt",
"macros",
"sync",
]