[package]
name = "echo_orchestration"
version = "0.1.4"
edition = "2024"
rust-version = "1.85"
license = "MIT"
description = "Orchestration layer for echo-agent framework (workflow, human-loop, tasks)"
repository = "https://github.com/EchoYue-lp/echo-agent"
homepage = "https://github.com/EchoYue-lp/echo-agent"
documentation = "https://docs.rs/echo_orchestration"
keywords = ["ai", "agent", "workflow", "orchestration"]
categories = ["api-bindings", "asynchronous"]
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
exclude = ["**/.DS_Store"]
[features]
default = []
websocket = ["dep:tokio-tungstenite"]
[dependencies]
echo_core = { version = "0.1.4", path = "../echo-core" }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3"
async-trait = "0.1"
async-stream = "0.3"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4"] }
tracing = "0.1"
reqwest = { version = "0.12", features = ["json"] }
regex = "1"
tokio-tungstenite = { version = "0.24", optional = true }
dashmap = "6"
fastrand = "2"
tokio-util = { version = "0.7", features = ["rt"] }