[package]
name = "synaps-engine"
version = "0.3.7"
edition = "2021"
rust-version = "1.80"
description = "Runtime engine — streaming, tools, MCP, skills, extensions, sidecar"
license = "Apache-2.0"
[lib]
name = "agent_engine"
path = "src/lib.rs"
[dependencies]
agent-core = { path = "../agent-core", version = "0.3.7", package = "synaps-core" }
tokio = { version = "1.0", features = ["full"] }
tokio-util = "0.7"
tokio-stream = "0.1"
futures = "0.3"
async-trait = "0.1.89"
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls-native-roots"] }
bytes = "1"
memchr = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
uuid = { version = "1.0", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0"
anyhow = "1.0"
regex = "1"
sha2 = "0.10"
rand = "0.9"
base64 = "0.22"
url = "2"
urlencoding = "2"
dirs = "5"
fs4 = "0.13"
notify = "6.1"
globset = "0.4"
libc = "0.2"
zeroize = "1.8.2"
tempfile = "3"
signal-hook = { version = "0.3", features = ["iterator"] }
portable-pty = "0.9"
crossterm = { version = "0.28", features = ["event-stream"] }
axum = { version = "0.7", features = ["ws"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors"] }
tokio-tungstenite = "0.21"
arc-swap = "1"
[dev-dependencies]
serial_test = "3.4.0"
tempfile = "3"