dag_exec 0.1.1

Sync DAG executor for CPU-heavy pipelines: bounded parallelism + partial evaluation.
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 = "dag_exec"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sync DAG executor for CPU-heavy pipelines: bounded parallelism + partial evaluation."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/reymom/rust-dag-executor"

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

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

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

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

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

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

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

[dependencies]

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