- Add CLI support (--config, --help) with env var override for backend/agents - Implement distro justfile recipes: list-targets, install-targets, build-target, install - Fix OpenTelemetry API incompatibilities and remove deprecated calls - Add tokio "time" feature for timeout support - Fix Cargo profile warnings and Nushell script syntax - Update all dead_code warnings with strategic annotations - Zero compiler warnings in vapora codebase - Comprehensive CHANGELOG documenting risk-based approval gates system
68 lines
1.4 KiB
TOML
68 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 }
|
|
|
|
# CLI
|
|
clap = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
mockall = { workspace = true }
|
|
tempfile = { workspace = true }
|