carpool 0.1.0

Deduplicate and batch concurrent async requests through a collection window
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.93"
name = "carpool"
version = "0.1.0"
build = false
include = [
    "src/",
    "benches/",
    "examples/",
    "README.md",
    "CHANGELOG.md",
    "LICENSE-APACHE",
    "LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deduplicate and batch concurrent async requests through a collection window"
readme = "README.md"
keywords = [
    "async",
    "batch",
    "dataloader",
    "dedup",
    "tokio",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nullmonger/carpool"

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

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

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

[dependencies.tokio]
version = "1.16"
features = ["sync"]
default-features = false

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

[dev-dependencies.tokio]
version = "1.16"
features = [
    "macros",
    "rt",
    "time",
]
default-features = false