[package]
edition = "2024"
name = "daedalus-engine"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level engine facade for planning and running Daedalus graphs."
homepage = "https://github.com/Prometheus-Dynamics/Daedalus"
documentation = "https://docs.rs/daedalus-engine"
readme = "README.md"
keywords = [
"dataflow",
"engine",
"runtime",
]
categories = ["concurrency"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Prometheus-Dynamics/Daedalus"
[features]
config-env = [
"serde",
"serde_json",
]
default = [
"config-env",
"metrics",
]
executor-pool = ["daedalus-runtime/executor-pool"]
gpu = [
"daedalus-runtime/gpu",
"daedalus-planner/gpu",
"daedalus-gpu",
]
gpu-mock = [
"gpu",
"daedalus-runtime/gpu-mock",
"daedalus-gpu/gpu-mock",
]
lockfree-queues = ["daedalus-runtime/lockfree-queues"]
metrics = ["daedalus-runtime/metrics"]
snapshots = ["daedalus-runtime/snapshots"]
[lib]
name = "daedalus_engine"
path = "src/lib.rs"
[[bin]]
name = "daedalus-engine"
path = "src/main.rs"
[[test]]
name = "config_validation"
path = "tests/config_validation.rs"
[[test]]
name = "engine_integration"
path = "tests/engine_integration.rs"
[[test]]
name = "engine_smoke"
path = "tests/engine_smoke.rs"
[[test]]
name = "json_snapshots"
path = "tests/json_snapshots.rs"
[[test]]
name = "registry_inspection"
path = "tests/registry_inspection.rs"
[dependencies.daedalus-gpu]
version = "0.1.1"
optional = true
[dependencies.daedalus-planner]
version = "0.1.1"
default-features = false
[dependencies.daedalus-registry]
version = "0.1.1"
default-features = false
[dependencies.daedalus-runtime]
version = "0.1.1"
default-features = false
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
optional = true
[dependencies.serde_json]
version = "1.0.145"
optional = true
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.daedalus-data]
version = "0.1.1"
[dev-dependencies.tempfile]
version = "3.23.0"