[package]
edition = "2024"
name = "daedalus-planner"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Planner that validates and schedules Daedalus dataflow graphs."
homepage = "https://github.com/Prometheus-Dynamics/Daedalus"
documentation = "https://docs.rs/daedalus-planner"
readme = "README.md"
keywords = [
"dataflow",
"graph",
"planner",
]
categories = ["algorithms"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Prometheus-Dynamics/Daedalus"
[features]
default = []
gpu = ["daedalus-gpu"]
proto = []
schema = []
[lib]
name = "daedalus_planner"
path = "src/lib.rs"
[[bin]]
name = "plan_dump"
path = "src/bin/plan_dump.rs"
[[test]]
name = "fanin_ports"
path = "tests/fanin_ports.rs"
[[test]]
name = "host_bridge_generic_infer"
path = "tests/host_bridge_generic_infer.rs"
[[test]]
name = "order_property"
path = "tests/order_property.rs"
[[test]]
name = "plan_golden"
path = "tests/plan_golden.rs"
[[test]]
name = "structural_convert"
path = "tests/structural_convert.rs"
[dependencies.daedalus-core]
version = "0.1.1"
[dependencies.daedalus-data]
version = "0.1.1"
[dependencies.daedalus-gpu]
version = "0.1.1"
optional = true
[dependencies.daedalus-registry]
version = "0.1.1"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0.145"
[dev-dependencies.daedalus-data]
version = "0.1.1"
[dev-dependencies.once_cell]
version = "1.21.3"