[dependencies.dashmap]
version = "5.5"
[dependencies.futures]
version = "0.3"
[dependencies.num_cpus]
version = "1.16"
[dependencies.petgraph]
version = "0.6"
[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.20"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.35"
[dependencies.uuid]
features = ["v4"]
version = "1.10"
[dev-dependencies.tokio-test]
version = "0.4"
[[example]]
name = "all_features_demo"
path = "examples/all_features_demo.rs"
[[example]]
name = "branching_and_variants"
path = "examples/branching_and_variants.rs"
[[example]]
name = "complex_objects"
path = "examples/complex_objects.rs"
[[example]]
name = "comprehensive_demo"
path = "examples/comprehensive_demo.rs"
[[example]]
name = "implicit_edges"
path = "examples/implicit_edges.rs"
[[example]]
name = "mermaid_variants"
path = "examples/mermaid_variants.rs"
[[example]]
name = "parallel_execution"
path = "examples/parallel_execution.rs"
[[example]]
name = "simple_pipeline"
path = "examples/simple_pipeline.rs"
[features]
default = []
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
description = "High-performance DAG execution engine with Python bindings"
edition = "2021"
homepage = "https://github.com/briday1/graph-sp"
license = "MIT"
name = "graph-sp"
readme = "README.md"
repository = "https://github.com/briday1/graph-sp"
version = "2026.1.1"
[target.'cfg(not(target_env = "msvc"))'.dependencies.tikv-jemallocator]
optional = true
version = "0.5"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"