dagex 2026.17.0

A pure Rust DAG executor supporting implicit node connections, branching, and config sweeps
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"
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