takeaway 0.1.0

An efficient work-stealing task queue with prioritization and batching.
Documentation
[[bench]]
harness = false
name = "criterion"
path = "benches/criterion.rs"

[[bench]]
harness = false
name = "manual"
path = "benches/manual.rs"

[dependencies.atomic-wait]
version = "1.0"

[dependencies.atomig]
default-features = false
features = []
version = "0.4.3"

[dependencies.crossbeam-utils]
default-features = false
features = []
optional = true
version = "0.8"

[dev-dependencies.criterion]
version = "0.7.0"

[dev-dependencies.crossbeam-deque]
version = "0.8.6"

[dev-dependencies.rand]
version = "0.9.1"

[[example]]
name = "rlc"
path = "examples/rlc.rs"

[features]
crossbeam-utils = ["dep:crossbeam-utils"]
default = ["std"]
std = ["crossbeam-utils?/std"]

[lib]
name = "takeaway"
path = "src/lib.rs"

[package]
authors = ["arya dradjica <uhe8ob7m71igsl1d@bal-e.org>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "data-structures", "no-std"]
description = "An efficient work-stealing task queue with prioritization and batching."
edition = "2024"
homepage = "https://git.sr.ht/~bal-e/takeaway"
keywords = ["task-scheduling", "work-stealing", "data-structures"]
license = "MIT OR Apache-2.0"
name = "takeaway"
readme = "README.md"
repository = "https://git.sr.ht/~bal-e/takeaway"
rust-version = "1.85.0"
version = "0.1.0"

[package.metadata.docs.rs]
all-features = true

[[test]]
name = "simple"
path = "tests/simple.rs"