agentq 0.1.0

An embeddable job queue with idempotency keys, per-lane backpressure and bounded concurrency, for agent tool calls.
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 = "2024"
rust-version = "1.85"
name = "agentq"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An embeddable job queue with idempotency keys, per-lane backpressure and bounded concurrency, for agent tool calls."
documentation = "https://docs.rs/agentq"
readme = "README.md"
keywords = [
    "queue",
    "async",
    "tokio",
    "idempotency",
    "backpressure",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/Arshdeep54/agentq"

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

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

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

[dependencies.strum]
version = "0.28.0"
features = ["derive"]

[dependencies.tokio]
version = "1.53.1"
features = [
    "sync",
    "rt",
]

[dev-dependencies.tokio]
version = "1.53.1"
features = [
    "macros",
    "rt-multi-thread",
    "time",
]