[dependencies.pyo3]
default-features = false
features = ["extension-module", "auto-initialize", "macros"]
optional = true
version = "=0.18.3"
[[example]]
name = "comprehensive_demo"
path = "examples/comprehensive_demo.rs"
[[example]]
name = "output_access_demo"
path = "examples/output_access_demo.rs"
[[example]]
name = "parallel_execution_demo"
path = "examples/parallel_execution_demo.rs"
[[example]]
name = "per_node_output_access"
path = "examples/per_node_output_access.rs"
[[example]]
name = "tuple_api_demo"
path = "examples/tuple_api_demo.rs"
[[example]]
name = "variant_demo_full"
path = "examples/variant_demo_full.rs"
[features]
python = ["pyo3"]
[lib]
crate-type = ["cdylib", "rlib"]
name = "graph_sp"
path = "src/lib.rs"
[package]
authors = ["briday1 <your-email@example.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "algorithms"]
description = "A pure Rust graph executor supporting implicit node connections, branching, and config sweeps"
documentation = "https://docs.rs/graph-sp"
edition = "2021"
homepage = "https://github.com/briday1/graph-sp"
keywords = ["graph", "dag", "execution", "pipeline", "workflow"]
license = "MIT"
name = "graph-sp"
readme = "README.md"
repository = "https://github.com/briday1/graph-sp"
version = "0.1.0"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"