[package]
edition = "2021"
name = "dagex"
version = "2026.17.0"
authors = ["briday1 <your-email@example.com>"]
build = false
exclude = [
".venv*",
"venv",
".github",
"examples/py",
]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"assets/*.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust DAG executor supporting implicit node connections, branching, and config sweeps"
homepage = "https://github.com/briday1/dagex"
documentation = "https://docs.rs/dagex"
readme = "README.md"
keywords = [
"dag",
"graph",
"execution",
"pipeline",
"workflow",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT"
repository = "https://github.com/briday1/dagex"
[features]
python = ["pyo3"]
radar_examples = [
"ndarray",
"num-complex",
"rustfft",
]
[lib]
name = "dagex"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.ndarray]
version = "0.15"
optional = true
[dependencies.num-complex]
version = "0.4"
optional = true
[dependencies.pyo3]
version = "=0.18.3"
features = [
"extension-module",
"macros",
]
optional = true
default-features = false
[dependencies.rustfft]
version = "6.1"
optional = true