task-exec-queue 0.10.0

A asynchronous task execution queue
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "task-exec-queue"
version = "0.10.0"
authors = ["try <trywen@qq.com>"]
build = false
exclude = [
    "examples/*",
    "Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A asynchronous task execution queue"
homepage = "https://github.com/try-box/rust-box/tree/main/task-exec-queue"
readme = "README.md"
keywords = [
    "task",
    "queue",
    "tokio",
    "async-std",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/try-box/rust-box/tree/main/task-exec-queue"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
rate = ["rate-counter"]

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

[dependencies.ahash]
version = "0.8"

[dependencies.crossbeam-queue]
version = "0.3"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.futures]
version = "0.3"

[dependencies.futures-lite]
version = "1.12"

[dependencies.log]
version = "0.4"

[dependencies.mpsc]
version = "0.3"

[dependencies.once_cell]
version = "1.10"

[dependencies.parking_lot]
version = "0.12"

[dependencies.queue-ext]
version = "0.4"

[dependencies.rate-counter]
version = "0.4"
features = ["rate"]
optional = true
package = "box-counter"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt",
    "macros",
    "time",
    "sync",
]