[package]
edition = "2024"
name = "daedalus-runtime"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime executor for Daedalus plans with backpressure and plugins."
homepage = "https://github.com/Prometheus-Dynamics/Daedalus"
documentation = "https://docs.rs/daedalus-runtime"
readme = "README.md"
keywords = [
"runtime",
"dataflow",
"graph",
]
categories = ["concurrency"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Prometheus-Dynamics/Daedalus"
[features]
default = ["metrics"]
executor-pool = ["rayon"]
ffi = []
gpu = ["daedalus-gpu"]
gpu-mock = [
"gpu",
"daedalus-gpu/gpu-mock",
]
lockfree-queues = ["crossbeam-queue"]
metrics = []
plugins = []
snapshots = []
[lib]
name = "daedalus_runtime"
path = "src/lib.rs"
[[test]]
name = "backpressure"
path = "tests/backpressure.rs"
[[test]]
name = "executor"
path = "tests/executor.rs"
[[test]]
name = "executor_gpu"
path = "tests/executor_gpu.rs"
[[test]]
name = "host_bridge_port_types"
path = "tests/host_bridge_port_types.rs"
[[test]]
name = "node_error"
path = "tests/node_error.rs"
[[test]]
name = "node_io_ports"
path = "tests/node_io_ports.rs"
[[test]]
name = "order_property"
path = "tests/order_property.rs"
[[test]]
name = "parallel_invariants"
path = "tests/parallel_invariants.rs"
[[test]]
name = "policies"
path = "tests/policies.rs"
[[test]]
name = "runtime_plan"
path = "tests/runtime_plan.rs"
[[test]]
name = "runtime_plan_golden"
path = "tests/runtime_plan_golden.rs"
[[test]]
name = "runtime_policy_application"
path = "tests/runtime_policy_application.rs"
[[test]]
name = "snapshot"
path = "tests/snapshot.rs"
[dependencies.crossbeam-queue]
version = "0.3.12"
optional = true
[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-planner]
version = "0.1.1"
[dependencies.daedalus-registry]
version = "0.1.1"
[dependencies.futures-util]
version = "0.3.31"
features = [
"std",
"std",
]
default-features = false
[dependencies.image]
version = "0.25.9"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dependencies.rand]
version = "0.9.2"
optional = true
[dependencies.rayon]
version = "1.11.0"
optional = true
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.smallvec]
version = "1.15.1"
features = ["serde"]
[dev-dependencies.daedalus-registry]
version = "0.1.1"
[dev-dependencies.rand]
version = "0.9.2"
[dev-dependencies.serde_json]
version = "1.0.145"