dag-executor 0.1.0

A production-ready DAG executor with state management and advanced patterns
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 = "2021"
rust-version = "1.74"
name = "dag-executor"
version = "0.1.0"
authors = ["menjaraz <menjaraz@gmail.com>"]
build = false
exclude = [
    ".github/",
    "docker/",
    "CLAUDE.md",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A production-ready DAG executor with state management and advanced patterns"
homepage = "https://github.com/my-LinkedIn/dag-executor"
documentation = "https://docs.rs/dag-executor"
readme = "README.md"
keywords = [
    "dag",
    "workflow",
    "task",
    "scheduler",
    "stateful",
]
categories = [
    "asynchronous",
    "concurrency",
    "database-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/my-LinkedIn/dag-executor"

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

[features]
default = ["metrics"]
metrics = ["dep:prometheus"]

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

[[bin]]
name = "dag-executor"
path = "src/main.rs"

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1"

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

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.futures]
version = "0.3"

[dependencies.lru]
version = "0.12"

[dependencies.parking_lot]
version = "0.12"

[dependencies.petgraph]
version = "0.6"

[dependencies.prometheus]
version = "0.13"
optional = true

[dependencies.rand]
version = "0.8"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
]

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"

[profile.release]
lto = true
codegen-units = 1
panic = "abort"