65 lines
1.4 KiB
TOML
65 lines
1.4 KiB
TOML
|
|
[package]
|
||
|
|
name = "vapora-agents"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["rlib"]
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "vapora-agents"
|
||
|
|
path = "src/bin/server.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
# Internal crates
|
||
|
|
vapora-shared = { workspace = true }
|
||
|
|
vapora-llm-router = { workspace = true }
|
||
|
|
vapora-knowledge-graph = { workspace = true }
|
||
|
|
vapora-swarm = { workspace = true }
|
||
|
|
|
||
|
|
# Secrets management
|
||
|
|
secretumvault = { workspace = true }
|
||
|
|
|
||
|
|
# Async runtime
|
||
|
|
tokio = { workspace = true }
|
||
|
|
futures = { workspace = true }
|
||
|
|
async-trait = { workspace = true }
|
||
|
|
|
||
|
|
# Web framework (for health checks)
|
||
|
|
axum = { workspace = true }
|
||
|
|
|
||
|
|
# Serialization
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
toml = { workspace = true }
|
||
|
|
|
||
|
|
# Error handling
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
|
||
|
|
# Message Queue
|
||
|
|
async-nats = { workspace = true }
|
||
|
|
|
||
|
|
# Database (Phase 5.5: KG persistence)
|
||
|
|
surrealdb = { workspace = true }
|
||
|
|
|
||
|
|
# LLM Agent Framework
|
||
|
|
rig-core = { workspace = true }
|
||
|
|
# RAG & Embeddings: Provided via vapora-llm-router using provider APIs
|
||
|
|
|
||
|
|
# Utilities
|
||
|
|
uuid = { workspace = true }
|
||
|
|
chrono = { workspace = true }
|
||
|
|
|
||
|
|
# Logging
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
mockall = { workspace = true }
|
||
|
|
tempfile = { workspace = true }
|