work_dispatcher 0.1.1

A simple concurrent data processing framework
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"
name = "work_dispatcher"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple concurrent data processing framework"
readme = "README.md"
keywords = [
    "concurrency",
    "actor",
    "producer-consumer",
]
categories = ["concurrency"]
license = "MIT"
repository = "https://github.com/tsailin-bit/work_dispatcher"

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.flume]
version = "0.11"

[dependencies.num_cpus]
version = "1.16"

[dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt-multi-thread",
]

[dependencies.tracing]
version = "0.1"

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

[dev-dependencies.tracing-subscriber]
version = "0.3.19"